본문 바로가기
개발공부/NodeJS

[NodeJS] json-server 이용하기

by bzerome240 2023. 5. 27.

 

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
반응형

댓글