创建 React 应用程序不起作用
IT技术
reactjs
command-prompt
create-react-app
2021-04-09 19:17:40
6个回答
就我而言,未安装“create-react-app”。安装运行此命令
npm install -g create-react-app
安装成功后,尝试运行
npx create-react-app hello-world
如果这对你有用。伟大的其他评论对你有用的东西,
请试试这个:
npm cache clean --force
我遇到了同样的问题,不得不执行以下操作:
npm uninstall -g create-react-app
npm uninstall create-react-app
在此之后,我能够创建应用程序:
npx create-react-app project-app
确保您没有运行任何防病毒软件,停止/暂停所有防病毒软件或保护软件。
你也可以试试
use create-react-app projectname --save
or create-react-app projectname --save-exact and start again
或者
正如错误所暗示的那样,您应该使用较新版本的节点。您使用的是 8.9.4,您可能应该使用 8.12.0 LTS。
我遇到了同样的问题,我通过以下方式解决了:
1. 更新 npm 版本 (npm install npm@latest -g)
2. 清除缓存 (npm cache clean --force)
3. 创建react项目 (npx create- react-app todo)
(create-react-app 已经安装)