D:\Node.js>npm run server npm ERR! Missing script: "server" npm ERR! npm ERR! To see a list of scripts, run: npm ERR! npm run npm ERR! A complete log of this run can be found in: npm ERR! D:\nodejs\node_cache\_logs\2023-06-09T12_19_15_011Z-debug-0.log
时间: 2023-07-09 17:47:32 浏览: 162
window环境下npm install node-sass报错的解决方法
5星 · 资源好评率100%
这个错误提示表明在当前项目中,没有找到名为 "server" 的脚本。因此,当你运行 "npm run server" 命令时,npm 无法找到对应的脚本并报错了。
要解决这个问题,你需要先确认是否在 package.json 文件中添加了 "server" 脚本。你可以打开 package.json 文件,并查看 "scripts" 属性下是否有名为 "server" 的属性。如果没有,你需要手动添加一个 "server" 脚本,例如:
```
"scripts": {
"start": "node index.js",
"server": "nodemon index.js"
}
```
在这个例子中,我们添加了一个名为 "server" 的脚本,它将使用 nodemon 启动 index.js 文件。然后你可以运行 "npm run server" 命令来启动服务器。
如果你已经在 package.json 文件中添加了 "server" 脚本,那么你需要确认当前的工作目录是否正确,即是否在包含 package.json 文件的目录下运行 "npm run server" 命令。
阅读全文