npm|npm install (npm ERR! getaddrinfo ENOTFOUND registry.npmjs.org)
记录下拉取react前端最新代码后,执行npm install报错(npm ERR! network request to https://registry.npmjs.org/es... failed, reason: getaddrinfo ENOTFOUND registry.npmjs.org)的解决办法。
- 按照报错提示,执行完如下命令,再执行(npm install)仍然还有报错:
npm audit fix npm audit fix --force
注意检查执行完如上命令后,如果package.json文件被修改了,最好回滚到修改前的代码。
- 网上一番搜索后,执行如下命令,再执行(npm install)就成功了:
npm cache clean --force
- 最后执行:
npm run dev
【npm|npm install (npm ERR! getaddrinfo ENOTFOUND registry.npmjs.org)】启动成功!
推荐阅读
- 开发并发布依赖包,作为工具包供别人npm|开发并发布依赖包,作为工具包供别人npm install
- 【源码】vuex@3.6.3
- Debug专栏|“OSError: [WinError 126] 找不到指定的模块”的解决办法
- OpenCV|pycharm安装opencv导入镜像源以及更新pip的正确做法(先到正确的路径下再输入python -m pip install --upgrade pip)
- Are|成功解决C++编译器报错[Error]in C++98 ‘arr‘ must be initialized by constructor, not by‘{...}‘
- [记录] TypeError: Invalid attempt to spread non-iterable instance.
- SAP|SAP UI5 的前世今生
- 一个|一个 ExpressionChangedAfterItHasBeenCheckedError 错误的解决过程
- 前端|npm ERR command failednpm ERR command CWINDOWSsystem32cmd.exe d s c node-gyp rebuild
- 前端|npm i 下载依赖一直报错(git dep preparation failed等)