728x90
간단한 superagent 사용법 입니다.
Axios 보다는 이걸 사용하고있습니다.
npm install superagent
const superagent = await require('superagent');
const a = await superagent.get('주소')
.set('header', '정보')
.query({쿼리 정보})
const a = await superagent.post('주소')
.set('header', '정보') // content-type, authorization 등등
.send({보낼 정보})
이런 형식으로 바로 잡아서 사용 할 수 있습니다.
어떤면으로 보면 작성할 수 있는 부분이 간결하고 쉽더군요.
추가 내용들은 다음을 참조 하시면 됩니다.
https://www.npmjs.com/package/superagent
728x90
'잡다한 지식' 카테고리의 다른 글
[JS] Sequelize Association(관계) 설정 (0) | 2023.11.08 |
---|---|
[JS] toss 빌링키 연결 및 사용 api (1) | 2023.11.06 |
[JS] api 만들었을때 오래걸리는 현상 확인법 (0) | 2023.11.02 |
[JS] sequelize transaction commit, rollback 잘못 걸었을때 (0) | 2023.11.01 |
[JS] sequelize findAndCountAll 의 활용성 (1) | 2023.10.31 |