我正在尝试启动我的React应用 我删除了package.json,node_modules和package-lock.json
我重新安装了它们,当我尝试运行npm start时 我得到了错误
freduah@freduah:~/react-kempinski$ npm start
npm ERR! missing script: start
npm ERR! A complete log of this run can be found in:
npm ERR! /home/freduah/.npm/_logs/2020-10-28T17_28_21_894Z-debug.log
freduah@freduah:~/react-kempinski$
错误非常明显,但我不知道如何解决
答案 0 :(得分:1)
检查您的package.json文件。在此文件中,您应该看到scripts
部分。
正确的脚本应该是这样的。
"scripts": {
"start": "node scripts/start.js", // The way to your start.js script
"build": "node scripts/build.js", // The way to your build.js script
"test": "node scripts/test.js" // The way to your test.js script
},
答案 1 :(得分:1)
如果您使用create-react-app
构建应用,请检查package.json
部分的scripts
中是否包含这些行。
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
改为尝试npm run start