PS D:\Front_end\浙政钉源码(1)> npm run start npm ERR! Missing script: "start" npm ERR! npm ERR! Did you mean one of these? npm ERR! npm star # Mark your favorite packages npm ERR! npm stars # View packages marked as favorites 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! C:\Users\admin\AppData\Local\npm-cache\_logs\2023-06-01T06_09_50_091Z-debug.log PS D:\Front_end\浙政钉源码(1)>
时间: 2023-09-23 14:06:26 浏览: 67
端口扫描实验报告,里面有源代码的。你试试嘞,看看嘞,保准好用无错误。
3星 · 编辑精心推荐
根据你的命令行输出,你在 D 盘的 Front_end 文件夹下执行了 `npm run start` 命令,但是出现了错误提示:Missing script: "start",意思是缺少 "start" 这个脚本。可能是因为你的 `package.json` 文件中没有定义 "start" 脚本,或者你打错了命令。你可以尝试运行 `npm run` 命令查看所有可用的脚本列表,或者检查 `package.json` 文件中是否定义了 "start" 脚本。如果没有定义,你可以手动添加 `"start": "node index.js"` 到 `"scripts"` 字段中。
阅读全文