所以我试图学习React。从来没有在今天之前使用它,参加一些课程。我按照reactjs.org的说明继续设置单页应用程序。我一直在运行npm start
并遇到错误。所以,恼火,我做了一些研究,更新了npm和node.js(npm现在是v5.6.0,节点现在是9.4.0)并且仍然有同样的错误。现在我没有找到任何答案,完全不知道为什么npm start
无法正常工作。
Jonathans-MBP:src jonathankuhl$ npm start
> my-app@0.1.0 start /Users/jonathankuhl/Documents/HTML:CSS Practice/react test/my-app
> react-scripts start
sh: react-scripts: command not found
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! my-app@0.1.0 start: `react-scripts start`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the my-app@0.1.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/jonathankuhl/.npm/_logs/2018-01-26T19_59_09_179Z-debug.log
Jonathans-MBP:src jonathankuhl$ cd ./
Jonathans-MBP:src jonathankuhl$ ls
App.css index.js
App.js logo.svg
App.test.js registerServiceWorker.js
index.css
Jonathans-MBP:src jonathankuhl$ cd ..
Jonathans-MBP:my-app jonathankuhl$ ls
README.md package-lock.json public
node_modules package.json src
Jonathans-MBP:my-app jonathankuhl$
任何帮助都将不胜感激。
答案 0 :(得分:4)
看起来你没有安装react脚本,在npm install
之前npm start
或者如果没有修复它,请npm install react-scripts --save
安装它们它应该解决它。