npm ERR! Missing script: "serve" 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:\NVM\node_cache\_logs\2023-06-02T02_53_29_477Z-debug-0.log Waiting for the debugger to disconnect...
时间: 2023-07-09 22:26:23 浏览: 170
npm scripts 使用指南详解
这个错误提示是因为在你的项目中没有定义名为 "serve" 的脚本。你可以通过以下命令列出所有可用的脚本:
```
npm run
```
这会输出所有可用的脚本。你可以检查一下是否有 "serve" 脚本,如果没有,则需要在 package.json 文件中添加一个 "serve" 脚本,例如:
```json
{
"scripts": {
"serve": "vue-cli-service serve"
}
}
```
这里的 "vue-cli-service serve" 是 Vue CLI 提供的默认 serve 命令,你也可以根据自己的需要自定义脚本。添加完脚本后,再次运行 "npm run serve" 命令即可。
阅读全文