get테스트
curl -v localhost:3000/api/posts
post테스트(bodyParser에 type이 */*가 아니면 안나옴
curl -v \
--data '{"id":"1","writer":"alie","title":"first posting"}' \
http://localhost:3000/api/bugs
curl -v \
--header 'Content-Type: application/json' \
--data '{"id":"1","writer":"alie","title":"first posting"}' \
http://localhost:3000/api/bugs
'개발 > Javascript' 카테고리의 다른 글
[책] Functional JavaScript (0) | 2016.10.08 |
---|---|
push후 new array 리턴받아야 할 때 (0) | 2016.09.18 |
mern stack 따라하기 (0) | 2016.09.18 |
global(전역)으로 설치한 npm package 목록 보기 (0) | 2016.09.18 |
jQeury 없이 html 로드 후 자바스크립트 시작 (0) | 2016.08.12 |