일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- iOS개발
- 12회차
- Swift
- ViewBuilder
- 글또x코드트리
- 개발회고
- github
- 비동기
- Swift알고리즘
- JavaScript
- 수정중
- 알고리즘
- 유데미
- 리액트입문
- 글또10기
- 개인앱
- 글쓰기
- 회고
- 클린코드
- 왕초보
- ios
- UIKit
- 스유
- RxSwift
- git
- SwiftUI
- Postman
- 글또
- 초보iOS개발자
- 글또9기
Archives
- Today
- Total
목록bodyParser (1)
playground_avec coding

client -server 통신 client 에서 Request 를 해야하는데 client 없이 테스트로 해보는 거 니까 postman 을 이용해 request 를 보낸다. -서버에서 만든 api를 테스트할 때 사용한다 1,body parser를 npm을 통해서 vscode 터미널 창에 설치해줬다. npm install body-parser --save 라고 쳐주고 설치 const bodyParser = require('body-parser'); const{ User } = require("./models/User"); //application/x-www-form-urlencoded app.use(bodyParser.urlencoded({extended: true})); //application/json..
front-end/node.js
2021. 6. 8. 02:51