无法使用 create-react-app,因为它显示以下错误

Cannot use create-react-app as it shows below error

提问人:Ashley Ferns 提问时间:8/22/2022 更新时间:8/28/2022 访问量:1043

问:

PS D:\Reactjs> npx 创建-反应-应用程序 textutils

在 D:\Reactjs\textutils 中创建新的 React 应用。

安装软件包。这可能需要几分钟时间。 使用 cra-template 安装 react、react-dom 和 react-scripts...

npm 错误!代码FETCH_ERROR npm 错误!errno FETCH_ERROR npm 错误!无效的 json 响应正文 https://registry.npmjs.org/@typescript-eslint%2fscope-manager 原因:尝试获取 https://registry.npmjs.org/@typescript-eslint%2fscope-manager 时响应正文无效:读取 ECONNRESET

npm 错误!可以在以下位置找到此运行的完整日志: npm 错误!C:\Users\Ashes10\AppData\Local\npm-cache_logs\2022-08-22T05_43_38_991Z-debug-0.log

正在中止安装。 npm install --no-audit --save --save-exact --loglevel 错误 react react-dom react-scripts cra-template 失败。

正在删除生成的文件...package.json 从 D:\Reactjs 中删除 textutils/ 做。

JavaScript ReactJS npm 创建-反应应用程序 npx

评论

0赞 brk 8/22/2022
有代理吗?

答:

0赞 Elias 8/22/2022 #1

也许这会起作用

npm cache clean --force
0赞 Sujith Sandeep 8/22/2022 #2

可能是因为缓存问题。要解决此问题,请尝试以下命令:

npm cache clean --force

如果问题仍然存在。运行以下命令进行安装 ,create-react-app

npm install -g create-react-app

然后,尝试创建你的 react 应用程序,

npx create-react-app appname
0赞 Ahmad2001 8/28/2022 #3

然后尝试以管理员身份运行命令行

  • cd <your desired location to create the project>
  • npx create-react-app <project name>