reactjs 无法使用react-app创建新的react项目

tuwxkamq  于 11个月前  发布在  React
关注(0)|答案(1)|浏览(126)

我尝试用create-react-app创建一个新的react项目,但每次都因为这个错误而失败......。
我使用的是npm版本6.3.0node版本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.

字符串

roejwanj

roejwanj1#

使用npx(它附带npm 5.2+)。
React Docs:
你需要在你的机器上安装Node >= 6和npm >= 5.2。要创建一个项目,运行:

npx create-react-app my-app
cd my-app
npm start

字符串

相关问题