创建反应应用程序错误! 404 找不到对象

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

我正在尝试运行 create-react-app (

npx create-react-app fetching-images
),它会加载一段时间,然后每次都会出现此错误:

Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...

npm ERR! code E404
npm ERR! 404 Object Not Found - GET https://skimdb.npmjs.com/registry/cyclist/-/cyclist-1.0.1.tgz - not_found
npm ERR! 404 
npm ERR! 404  'cyclist@https://skimdb.npmjs.com/registry/cyclist/-/cyclist-1.0.1.tgz' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404 
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/Eric/.npm/_logs/2021-03-14T10_02_15_171Z-debug.log

Aborting installation.
  npm install --save --save-exact --loglevel error react react-dom react-scripts cra-template has failed.

我完全卸载了 Node、npm 和 npx,然后从 https://nodejs.org/en/ 重新安装了最新版本,但仍然出现此错误。我使用的是 macOS(v.11.2.2)、npm v.7.6.0、node v.15.11.0。

如何修复此错误?

javascript node.js reactjs npm create-react-app
2个回答
1
投票

请尝试设置:

npm config set registry http://registry.npmjs.org

0
投票

花了一整天的时间试图用

npm ci
只在我的 UI 上解决这个问题,然后测试后端,它也发生在
pip install
上。然后 docker 提示我进行更新,我就这样做了,然后失败了。然后docker建议我恢复默认值。 docker 是否按预期再次工作了?

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