create-react-app 落后于最新版本
create-react-app is behind the latest version
我正在尝试 运行:
npx @contentful/create-contentful-app init contentful-refs
但是这会失败并引发以下错误:
您正在 运行ning create-react-app
4.0.3,它落后于最新版本 (5.0.0)。
我们不再支持全局安装 Create React App。
我继续删除了 npm、nvm、npx、create-react-app、create-contentful-app。
我检查过它们不在我的机器上,然后我更新到每个的最新版本。并尝试 运行ning 初始命令。我仍然遇到同样的问题,现在在安装最新版本的 create-react-app 之后,我的机器上仍然找不到 create-react-app。不知道在这里做什么,任何帮助将不胜感激。
试试这个命令
npx create-react-app@5.0.0 app-name
我通过执行以下操作解决了这个问题:-
- 将我的节点版本更新到 v14.15.0
正在更新我的 npm 版本
npm i -g npm@latest
npx create-react-app@5.0.0 你的应用程序名称
试试这个命令。
sudo npm i create-react-app@5.0.0
我也遇到了这个问题,我删除了 _npx 文件夹,然后 运行 npx create-react-app my-app 并创建了项目文件夹。
_npx 路径:%\AppData\Local\npm-cache_npx
如果在全局卸载 create-react-app
后问题仍然存在。
尝试
npm cache clean -f
或
删除 _npx
文件夹:
C:\Users\<username>\AppData\Local\npm-cache
create-react-app
现在似乎有效
npx create-react-app foo
原来问题出在内容包“@contentful/create-contentful-app”上。最新的 React 更新破坏了他们的包,他们已经用修复更新了它。
我正在尝试 运行:
npx @contentful/create-contentful-app init contentful-refs
但是这会失败并引发以下错误:
您正在 运行ning create-react-app
4.0.3,它落后于最新版本 (5.0.0)。
我们不再支持全局安装 Create React App。
我继续删除了 npm、nvm、npx、create-react-app、create-contentful-app。 我检查过它们不在我的机器上,然后我更新到每个的最新版本。并尝试 运行ning 初始命令。我仍然遇到同样的问题,现在在安装最新版本的 create-react-app 之后,我的机器上仍然找不到 create-react-app。不知道在这里做什么,任何帮助将不胜感激。
试试这个命令
npx create-react-app@5.0.0 app-name
我通过执行以下操作解决了这个问题:-
- 将我的节点版本更新到 v14.15.0
正在更新我的 npm 版本
npm i -g npm@latest
npx create-react-app@5.0.0 你的应用程序名称
试试这个命令。
sudo npm i create-react-app@5.0.0
我也遇到了这个问题,我删除了 _npx 文件夹,然后 运行 npx create-react-app my-app 并创建了项目文件夹。
_npx 路径:%\AppData\Local\npm-cache_npx
如果在全局卸载 create-react-app
后问题仍然存在。
尝试
npm cache clean -f
或
删除 _npx
文件夹:
C:\Users\<username>\AppData\Local\npm-cache
create-react-app
现在似乎有效
npx create-react-app foo
原来问题出在内容包“@contentful/create-contentful-app”上。最新的 React 更新破坏了他们的包,他们已经用修复更新了它。