如何安装新版react app 5.0.0

how to install the new version of react app 5.0.0

我一直在尝试为我的项目安装一个新的应用程序。 我的 vs 代码有一个问题 运行。 现在,我试图从全局卸载,但它仍然输出相同的错误。 最近有人 运行 遇到过这个错误吗?

终端中的ERROR输出: "你是 运行 create-react-app 4.0.3,它落后于最新版本 (5.0.0)。

我们不再支持全局安装 Create React App。

请使用以下命令之一删除所有全局安装:

可在此处找到创建新应用的最新说明: https://create-react-app.dev/docs/getting-started/"

提前致谢。

npx create-react-app@latest my-app

谢谢大家的帮助。 我找到了解决方案。 我输入了以下 link:https://create-react-app.dev/docs/getting-started/

然后在里面找到这个 link 指导我完成:https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f

这是解决方案:

如果您使用 npm 5.1 或更早版本,则无法使用 npx。相反,全局安装 create-react-app:

npm install -g create-react-app 现在你可以 运行:

创建反应应用程序我的应用程序

再次感谢您的投稿!

您可以运行使用此命令创建版本为 5.0.0 的新应用

npx create-react-app@5.0.0 my-app

运行 此命令并清除 npx 缓存

npx clear-npx-cache

然后运行这个命令来创建反应应用程序

npx create-react-app my-app

None 其他答案对我有用。我不知道如何,但 Gautam Kothari 上面的评论(在某种程度上)奏效了。我必须安装最新版本的 React:

就我而言:

npm install --save react@17.0.2 

然后我安装了最新版本的create-react-app

npx create-react-app@5.0.0 my_app

你可以运行这个命令

yarn global add create-react-app@5.0.0

None 其他答案对我有用。

在我的例子中,这个命令有效:

npm init react-app my-app