json-server的使用
作者:互联网
1:安装node.js
https://nodejs.org/zh-cn/
2:安装以后查看版本 进入命令窗口输出
node -v
3:设置淘宝镜像
npm config set registry https://registry.npm.taobao.org
node默认的下载地址是国外的网址 容易卡 我们从国内的服务器去装
4:安装json-server
npm i json-server -g
5:新建一个db文件夹 在里面新建一个db.json文件 写入
{
"userinfos": [
{
"id": 1,
"username": "leson",
"userpwd": 123
},
{
"id": 2,
"username": "lili",
"userpwd": 321
}
]
}
6:然后进入到该目录 运行
json-server --watch --host 0.0.0.0 --port 4321 db.json
在浏览器通过http://localhost:4321/userinfos 就可以通过get请求访问数据 4321 是端口 可以自行更改
标签:node,npm,4321,db,server,json,使用 来源: https://blog.csdn.net/ckf19980717/article/details/117593040