npm http fetch GET 200 https://registry.npmjs.org/create-react-app 212ms (cache revalidated)
Need to install the following packages:
create-react-app
Ok to proceed? (y)
npm http fetch GET 200 https://registry.npmjs.org/create-react-app 6ms (cache hit)
npm http fetch POST 200 https://registry.npmjs.org/-/npm/v1/security/advisories/bulk 341ms
npm http fetch GET 200 https://registry.npmjs.org/tar 50ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/tar-pack 841ms (cache revalidated)
You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.0).
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/
使用带版本号的 create-react-app 并不总是有效。例如: nvm use 14 - creaet-react-app@5.0.0 正确设置 nvm use 16 - creaet-react-app@5.0.0 无法设置,提示 "A template was not provided. This is likely because you're using an outdated version of create-react-app."
8条答案
按热度按时间b1payxdu1#
你尝试过更新节点和包管理器吗?你使用的是哪个?还有操作系统。
os8fio9y2#
我也无法创建一个新的React应用。
当运行
npx create-react-app my-app
时,进程在几秒钟后停止:我没有全局安装
create-react-app
。npm list -g
给出:我正在使用Node版本16.13.1,通过
nvm
安装。rn0zuynd3#
我正在创建我的React应用时遇到了问题。
请使用以下命令卸载create-react-app:
npm uninstall -g create-react-app
,然后再次使用npm install -g create-react-app
重新安装。今天我刚刚遇到了这个问题。或者使用npx create-react-app
piwo6bdm4#
我也遇到了同样的问题,使用
npx create-react-app@latest my-app
解决了。也许你可以试试看。zsbz8rwp5#
感谢@thanhpd,你的解决方案有效。
6mw9ycah6#
为什么我们必须执行
npx create-react-app@latest
才能使这个工作?这似乎是一个bug,无论是在npm、npx还是create-react-app中。i7uq4tfw7#
可能的重复问题:#12022 。
ztigrdn88#
我遇到了类似的问题。
Mac V12.1
使用带版本号的 create-react-app 并不总是有效。例如:
nvm use 14 - creaet-react-app@5.0.0 正确设置
nvm use 16 - creaet-react-app@5.0.0 无法设置,提示 "A template was not provided. This is likely because you're using an outdated version of create-react-app."