1. 初始化项目 : npm init -y
2. 安装json-server : npm i json-server - D
3. 根目录下创建 json-server > db.json ,然后写json数据
4. 配置在package.json下的 “scripts” : 添加配置代码: "server": "json-server db.json"
5. cmd运行 : 命令行: json-server -w db.json
1. 初始化项目 : npm init -y
2. 安装json-server : npm i json-server - D
3. 根目录下创建 json-server > db.json ,然后写json数据
4. 配置在package.json下的 “scripts” : 添加配置代码: "server": "json-server db.json"
5. cmd运行 : 命令行: json-server -w db.json