尝试使用npx创建React应用时出现问题

时间:2020-04-06 14:47:32

标签: reactjs react-native

我正在尝试使用ngx创建react应用,但不是创建应用,而是安装节点模块和package json文件。

下面的

是它停止的位置。 enter image description here

[{updated error 2

我的节点版本为8.9.2 npm版本5.5.1 nvm版本1.1.5

C:\ Windows \ System32> create-react-app my-app

在C:\ Windows \ System32 \ my-app中创建一个新的React应用。

┌──────────────────────────────── ────────────┐ │npm更新检查失败│ │尝试使用sudo运行或获取访问权限│ │通过│到本地更新配置存储 │sudo chown -R $ USER:$(id -gn $ USER)C:\ Users \ acer.config│ └────────────────────────────── ──────────┘ 安装软件包。这可能需要几分钟。 使用cra-template安装react,react-dom和react-scripts ...

core-js@2.6.11后安装C:\ Windows \ System32 \ my-app \ node_modules \ babel-runtime \ node_modules \ core-js node -e“ try {require('./ postinstall')} catch(e){}”

core-js@3.6.4安装后C:\ Windows \ System32 \ my-app \ node_modules \ core-js node -e“ try {require('./ postinstall')} catch(e){}”

core-js-pure@3.6.4安装后C:\ Windows \ System32 \ my-app \ node_modules \ core-js-pure node -e“ try {require('./ postinstall')} catch(e){}”

  • cra-template@1.0.3
  • react@16.13.1
  • react-scripts@3.4.1
  • react-dom@16.13.1 在240.793秒钟内添加了来自750个贡献者的1604个程序包,并审核了931146个程序包

58个包裹正在寻找资金 运行npm fund了解详情

发现了0个漏洞

2 个答案:

答案 0 :(得分:0)

看来您可能需要Node至少为8.10:https://reactjs.org/docs/create-a-new-react-app.html#create-react-app

您的计算机上需要拥有Node> = 8.10和npm> = 5.6。

我会尝试升级Node并重新安装create-react-app以查看是否有帮助!

答案 1 :(得分:0)

尝试通过以下方式全局安装create-react-app:

npm i -g create-react-app

然后:

create-react-app my-app