npm ERR! missing script: serve npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\liu'xin'yu\AppData\Roaming\npm-cache\_logs\2023-06-08T05_44_20_752Z-debug.log
时间: 2023-09-24 09:03:21 浏览: 133
error.log
这个错误提示表明在你的项目中缺少名为 "serve" 的脚本。你需要在你的项目的 package.json 文件中的 "scripts" 字段中添加 "serve" 脚本。例如:
```json
"scripts": {
"start": "node index.js",
"serve": "node server.js"
}
```
然后你就可以在终端中运行 "npm run serve" 命令来启动你的服务器了。
阅读全文