gpt4 book ai didi

reactjs - json-server 未被识别为内部或外部命令

转载 作者:行者123 更新时间:2023-12-03 13:39:30 25 4
gpt4 key购买 nike

我正在设置一个 json 服务器,然后安装它并将其指定为我的 npm start 命令,如下所示

"scripts": {
"start": "json-server -p 3001 -w db.json"

但是每次我在终端上输入 npm start 时都会收到此错误

> api-server@1.0.0 start C:\Work\React-projects\streams\api-server
> json-server -p 3001 -w db.json

'json-server' is not recognized as an internal or external command,
operable program or batch file.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! api-server@1.0.0 start: `json-server -p 3001 -w db.json`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the api-server@1.0.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Abdelaziz\AppData\Roaming\npm-cache\_logs\2019-04-06T09_07_30_796Z-debug.log

最佳答案

首先,您需要检查是否全局安装了json-server。或者您可以通过以下方式全局安装它

npm install -g json-server

如果您在项目本地安装它,请使用 npx 运行它

npx json-server --watch db.json

在此处查看 npx 和 npm 之间的差异:https://stackoverflow.com/a/52018825/11285186

关于reactjs - json-server 未被识别为内部或外部命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55547572/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com