npm安装依赖包报错,npm ERR! code ENOTFOUND

一、报错现象:

npm WARN registry Unexpected warning for https://registry.npmjs.org/: Miscellaneous Warning ETIMEDOUT: request to https://registry.npmjs.org/vue failed, reason: connect ETIMEDOUT 104.16.23.35:443

npm WARN registry Using stale data from https://registry.npmjs.org/ due to a request error during revalidation.

npm ERR! code ETIMEDOUT

npm ERR! errno ETIMEDOUT

npm ERR! network request to https://registry.npmjs.org/vue/-/vue-3.2.36.tgz failed, reason: connect ETIMEDOUT 104.16.26.35:443

npm ERR! network This is a problem related to network connectivity.

npm ERR! network In most cases you are behind a proxy or have bad network settings.

npm ERR! network

npm ERR! network If you are behind a proxy, please make sure that the

npm ERR! network 'proxy' config is set properly. See: 'npm help config'

npm ERR! A complete log of this run can be found in:

npm ERR! C:\Users\Sophia.Li\AppData\Roaming\npm-cache\_logs\2023-02-21T05_08_58_618Z-debug.log

二、切换成淘宝镜像
npm config set registry https://registry.npm.taobao.org
重新安装npm i

request to httpsregistry.npm.taobao.org failed, reason certificate has expired的解决方案,

三、借鉴方案
3.1 查看当前的npm镜像设置:npm config list
3.2 清空缓存:npm cache clean --force
3.3 然后修改镜像即可:npm config set registry https://registry.npmjs.org/
3.4 再次运行: npm config list,查看 registry 已经被更改为默认的 npm 公共镜像地址。

四、可以正常使用npm啦~

相关推荐
JustHappy42 分钟前
古法编程秘籍(六):程序到底是怎么跑起来的?从 IO 到中断,一次讲明白
前端·后端·全栈
HYCS1 小时前
用pixi.js实现fabric.js(六):从线性代数的角度理解编辑器交互
前端·javascript·canvas
卷帘依旧1 小时前
useImperativeHandle的作用
前端
卷帘依旧1 小时前
Hooks在Fiber上的存储原理
前端
you45802 小时前
学成在线--day02 CMS前端开发(含Vue基础知识得回顾)
前端·javascript·vue.js
xiaofeichaichai2 小时前
虚拟 DOM
前端·javascript·vue.js
2401_878454532 小时前
前端高频得手写题
前端
初一初十2 小时前
vue3实现的纯前端护肤品商城网站
前端·javascript·vue.js·前端框架
卷帘依旧2 小时前
React状态管理方案怎么选
前端