-
安装
安装之前,需要已经安装好NodeJs.
npm install -g json-server
-
基本使用
新建一个db.json文件写入一段json,如:
{ "posts": [ { "id": 1, "title": "json-server", "author": "typicode" } ], "comments": [ { "id": 1, "body": "some comment", "postId": 1 } ], "profile": { "name": "typicode" } }
-
启动server
json-server --watch db.json
JSON Server 使用
最新推荐文章于 2023-07-05 16:08:09 发布