vue.js를 공부하다보니 백엔드를 구축하지않고 DB를 사용할 수 있는 환경이 필요했다.
JSON Server로 일종의 가상 DB를 구현하는 방법을 알게되어 정리한다.
> 참고용
https://www.npmjs.com/package/json-server
1. JSON Server 설치
npm install -g json-server
2. db.json 생성
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}
db.json 파일을 생성 한 후 db구조를 잡아준다.
posts, comments, profile이 일종의 테이블이고 그 안에 담긴 것이 컬럼과 값이라고 생각하면 된다.
3. JSON Server 실행
json-server --watch db.json
해당 url로 접속하면
'Web' 카테고리의 다른 글
Web Storage | Session Storage 와 Local Storage의 특징 및 차이점 (0) | 2023.12.27 |
---|