前端模拟后端数据的神器json-Server

install Json Server

1
npm install -g json-server

在指定目录下创建db.json

1
2
3
4
5
6
7
8
9
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}

启动服务并监听文件

1
json-server --watch db.json

项目文档