创建 React 应用程序不起作用

IT技术 reactjs command-prompt create-react-app
2021-04-09 19:17:40

命令提示符显示创建react应用程序,不工作

帮助!我不知道这里发生了什么,创建react应用程序不起作用我也尝试重新安装但无济于事,请帮助!

Npm 版本:5.4.2 节点版本:8.70

尝试 npm install --save --save-exact --loglevel 错误 react react-dom react-scripts

在此处输入图片说明

6个回答

就我而言,未安装“create-react-app”。安装运行此命令

 npm install -g create-react-app

安装成功后,尝试运行

npx create-react-app hello-world

如果这对你有用。伟大的其他评论对你有用的东西,

这个选项没有安装完整的项目
2021-06-01 19:17:40
这确实有效,因为我在 cmd 上没有收到任何错误。但我面临的问题是create-react-app设置不完整所以,跑步npx create-react-app hello-world让我免于麻烦。
2021-06-07 19:17:40

请试试这个:

npm cache clean --force
npm cache clean --force 没有为我解决问题。仍然得到同样的错误。
2021-05-24 19:17:40
这为我做到了。
2021-06-03 19:17:40
它对我不起作用。我在 Windows 中也有同样的问题。你有其他解决办法吗?
2021-06-11 19:17:40
这是解决方案
2021-06-14 19:17:40
供将来参考:A Rejected Edit建议添加 2 行代码:1)npm -g create-react-app和 2) npx create-react-app my-app此编辑旨在解决帖子的作者,并且作为编辑没有任何意义。它应该写成评论或答案。
2021-06-20 19:17:40

我遇到了同样的问题,不得不执行以下操作:

npm uninstall -g create-react-app

npm uninstall create-react-app

在此之后,我能够创建应用程序:

npx create-react-app project-app
它是 npm 5.2+ 附带的包运行工具。
2021-05-30 19:17:40
它对我有用,但为什么npx create-react-app在卸载create-react-app后工作-_-
2021-05-31 19:17:40

确保您没有运行任何防病毒软件,停止/暂停所有防病毒软件或保护软件。

你也可以试试

use create-react-app projectname --save
or create-react-app projectname --save-exact and start again

或者

正如错误所暗示的那样,您应该使用较新版本的节点。您使用的是 8.9.4,您可能应该使用 8.12.0 LTS。

那是杀毒软件。我正在使用 bit-defender 防病毒软件,将其完全禁用 30 分钟,然后尝试运行它起作用的命令。
2021-06-19 19:17:40

我遇到了同样的问题,我通过以下方式解决了:
1. 更新 npm 版本 (npm install npm@latest -g)
2. 清除缓存 (npm cache clean --force)
3. 创建react项目 (npx create- react-app todo)
(create-react-app 已经安装)