我在运行npm start
时收到此错误。
npm ERR! Missing script: "start"
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! 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\USER\AppData\Local\npm-cache\_logs\2022-04-28T13_04_19_260Z-debug.log
3条答案
按热度按时间b91juud31#
package.json
有多个部分,scripts
是其中之一,它允许你编写npm脚本,我们可以使用npm run <script-name>
来运行这些脚本。你得到的错误是因为你的start
脚本在那个部分丢失了。对于节点应用程序,您的
package.json
文件应该类似于下图。在上面的代码中,重点关注
scripts
部分。package.json
文件中缺少以下行。加上这一行,就可以开始了。
wlzqhblo2#
iyzzxitl3#
当你给予npm时,你必须输入你需要npm运行的命令。
您必须在package.json文件中的script.start中写入节点index.js