我正在手动创建react app,但是当我执行npm start时出现以下错误:
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! reactapp@1.0.0 start: `node your-script.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the reactapp@1.0.0 start script.
npm ERR! This is probably not a problem with npm.
上面可能还有其他日志记录输出。
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Abdul Mateen\AppData\Roaming\npm-cache\_logs\2019-02-14T08_10_44_207Z-debug.log
答案 0 :(得分:0)
对于Windows:
首先要做:
npm run clean
然后删除
node_modules
然后也删除package-lock.json
文件并运行
npm install
然后倒数
npm start
对于Linux:
步骤1:
$ npm cache clean --force
第2步:删除node_modules
$ rm -rf node_modules folder
或手动删除
第3步:然后
npm install
最后用
$ npm start
要授予root访问权限,您可以使用sudo
希望有帮助。谢谢