1、全局安装:
pnpm i -g json-server
2、创建db.json文件
TypeScript
{
"posts": [
{
"id": 1,
"title": "json-server",
"author": "typicode"
}
],
"comments":[
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"profile":{
"name":"typicode"
}
}
3、 在db.json所在的文件夹下运行
TypeScript
json-server --port 3000 db.json
// 当前json-serve版本不低于1.0