我是靠谱客的博主 呆萌篮球,这篇文章主要介绍You are running `create-react-app` 5.0.0, which is behind the latest release(5.0.1).We no longer...,现在分享给大家,希望可以做个参考。

今天创建react项目的时候出现提示:

You are running `create-react-app` 5.0.0, which is behind the latest release (5.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:

 解决方式:

1. 卸载全局安装的create-react-app

 yarn global remove create-react-app

2. 直接执行创建项目命令

npx create-react-app 项目名称

或者采用下面这种方式解决:

npm uninstall -g create-react-app
npx clear-npx-cache
npm i create-react-app
npx create-react-app@latest my-app

最后

以上就是呆萌篮球最近收集整理的关于You are running `create-react-app` 5.0.0, which is behind the latest release(5.0.1).We no longer...的全部内容,更多相关You内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(156)

评论列表共有 0 条评论

立即
投稿
返回
顶部