json-server
json 기반으로 가상의 REST API 서버를 구축할 수 있는 npm 모듈
프론트엔드 개발자가 아직 웹서버가 구축 되지 않았을 때 프런트엔드 개발을 진행할 수 있도록 도와준다.
설치
npm i -g json-server
json server 실행
json-server --watch db.json
Fetch API로 GET/POST/PUT/DELETE 조회
POST 조회 예시
fetch("http://localhost:3000/posts", {
method: "POST",
body: JSON.stringify({
title: "The Great",
author: "Jermy"
})
headers: {
"content-type": "application/json; charset=UTF-8"
}
})
.then((response) => response.json())
.then((json) => console.log(json))
728x90
반응형
'개발공부 > NodeJS' 카테고리의 다른 글
Nodejs 환경에서 Artillery로 부하테스트 하기 (0) | 2023.05.29 |
---|---|
Express 웹서버 구축 - route, body-parser, compression, cookie-session, express-session, session-file-store, cors, morgan, multer, response-time, connect-timeout (0) | 2023.05.28 |
Nodejs 내장 모듈과 객체 (0) | 2023.05.27 |
자주 사용하는 자바스크립트 문법 (1) | 2023.05.27 |
NodeJS 크롤링 만들어보기 (cheerio) (0) | 2023.05.27 |
댓글