2024-09-26
npm install json-server
db.json
{
"posts": [
{ "id": "1", "title": "a title", "views": 100 },
{ "id": "2", "title": "another title", "views": 200 }
],
"comments": [
{ "id": "1", "text": "a comment about post 1", "postId": "1" },
{ "id": "2", "text": "another comment about post 1", "postId": "1" }
],
"profile": {
"name": "typicode"
}
}
npx json-server db.json
此时如果出现以下文字:
JSON Server started on PORT :3000
Press CTRL-C to stop
Watching db.json...
♡⸜(˶˃ ᵕ ˂˶)⸝♡
Index:
http://localhost:3000/
Static files:
Serving ./public directory if it exists
Endpoints:
http://localhost:3000/posts
http://localhost:3000/comments
http://localhost:3000/profile
这样就证明成功了。
直接访问http://localhost:3000/posts
,就可以看到json文件的内容了,
如果想看到第一篇文章的内容,访问http://localhost:3000/posts/1
。
post
命令可以新增文章,其他命令和RESTful API一样。