开发者问题收集

创建 React 应用程序时继续出错

2020-11-25
3562

我一直在尝试创建一个 React 应用程序,所以基本上是一个新项目,例如 hello world 或任何东西。

我尝试使用 npx create-react-app my-app

我收到的错误是:

You are running `create-react-app` 4.0.0, which is behind the latest release (4.0.1).

We no longer support global installation of Create React App.

Please remove any global installs with one of the following commands:
- npm uninstall -g create-react-app
- yarn global remove create-react-app

The latest instructions for creating a new app can be found here:
https://create-react-app.dev/docs/getting-started/

我尝试按照这些步骤操作,甚至使用 npm uninstall -g create-react-app 卸载,但我仍然收到相同的错误。

我的 npm 版本:6.14.8

这是在 React 中创建第一个应用程序的基本过程,我不确定为什么它如此复杂。有人可以告诉我如何修复该错误以及如何顺利创建 React 应用程序吗?

如果需要更多信息,请随时在下面发表评论:)

3个回答
npm install -g create-react-app

以上已帮我修复。

Mayuresh Srivastava
2020-11-28

对我有用:

npm uninstall -g create-react-app
npm install -g create-react-app
npx create-react-app app-name
Kashif Ali
2021-12-16

我尝试使用此命令。它有效

  1. npm install -g create-react-app

  2. npx create-react-app my-app

Juan Felipe Jara
2021-02-22