我尝试用create-react-app创建一个新的react项目,但每次都因为这个错误而失败......。
我使用的是npm
版本6.3.0
和node
版本10.8.0
我不知道该怎么办了...
在C:\Users\Demonblade\Desktop\test
中创建一个新的React应用。
正在安装软件包。这可能需要几分钟的时间。正在安装react、react-dom和react-scripts...
npm ERR! cb() never called!
npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! <https://npm.community>
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Demonblade\AppData\Roaming\npm-cache\_logs\2018-08-09T15_27_48_357Z-debug.log
Aborting installation.
npm install --save --save-exact --loglevel error react react-dom react-scripts has failed.
Deleting generated file... node_modules
Deleting generated file... package.json
Deleting test / from C:\Users\Demonblade\Desktop
Done.
字符串
1条答案
按热度按时间roejwanj1#
使用
npx
(它附带npm
5.2+)。React Docs:
你需要在你的机器上安装Node >= 6和npm >= 5.2。要创建一个项目,运行:
字符串