我是靠谱客的博主 呆萌篮球,最近开发中收集的这篇文章主要介绍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 are running `create-react-app` 5.0.0, which is behind the latest release(5.0.1).We no longer...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部