create-react-app 未安装所有依赖项

问题描述 投票:0回答:2

当我在 ubuntu 22 版本中第一次使用 npx create-react-app my-app 时,它安装正确,但它没有安装所有依赖项,因为我在 Windows 中安装我的 vs 代码,我使用的是 Node 18 版本,即 LTS 版本和 npm 8 版本。但是当我使用 npx create-react-app my-app 时,它在安装时向我显示此警告

注意:该项目是使用不受支持的旧版本工具启动的。 请更新到 Node >=14 和 npm >=6 以获得新项目中支持的工具。

javascript reactjs create-react-app
2个回答
1
投票

您可以同时删除

node_modules
package-lock.json

run npm i web-vitals --save-dev
run npm install

然后您可以再次使用

npm run build
npm start

如果这些都不起作用,你可以尝试一下

yarn cache clean
yarn install

然后

npx create-react-app your-app
。希望有帮助!


0
投票

运行:

npx 清除 npx 缓存

npx create-react-app@最新的你的应用程序

© www.soinside.com 2019 - 2024. All rights reserved.