使用
json-server
搭建开发 REST API 环境
安装
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" }
}
- 启动
json-server --watch db.json
- demo
$ curl http://localhost:3000/posts/1
{ "id": 1, "title": "json-server", "author": "typicode" }
其他方法如 Post、Put、Delete 也支持。