Windows下搭建 Json-Server
json-server 的 github 地址
github地址:https://github.com/typicode/json-server
搭建
首先本机搭建 node 环境
node 环境搭建
验证:
其次,在终端运行 install 命令
npm install -g json-server
创建 db.json 文件,文件内容如下
{ "posts": [ { "id": 1, "title": "json-server", "author": "typicode" } ], "comments": [ { "id": 1, "body": "some comment", "postId": 1 } ], "profile": { "name": "typicode" } }
在 db.json 同级目录下运行下面命令
json-server --watch db.json
测试
可以访问 http://localhost:3000/posts/1 ,如下图
更多测试,访问 https://github.com/typicode/json-server 地址,有更详细说明