json-server 是什么 ?
基于 Node.js,为前端人员提供一个模拟服务端接口数据,一般用在前后端分离测试
安装 json-server
npm install -g json-server
通过查看版本号检查是否安装成功
json-server -V
创建 db.json
在任意文件夹下创建 db.json 文件 内容如下
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}
启动 json-server
cd 进入 db.json 存在的文件夹后 运行如下代码
json-server --watch db.json