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啦~

相关推荐
用户938515635073 小时前
从零在浏览器里跑 DeepSeek-R1:WebGPU + Transformer.js 全链路实战
前端·设计模式·typescript
CodeSheep3 小时前
稚晖君公司人事大变动,来了!
前端·后端·程序员
鱼樱前端3 小时前
用 AI 做内容变收入
前端·人工智能·ai编程
浮生望4 小时前
React + TypeScript 组件设计进阶:从类型约束到无状态组件的三次进化
前端
90后的晨仔4 小时前
Mac 开发 uni-app 终极方案:让安卓模拟器彻底脱离 Android Studio 独立运行
前端·vue.js
90后的晨仔4 小时前
别再搞混了!uni-app 中 node_modules 和 uni_modules 到底是什么关系?
前端
kyriewen5 小时前
面试官问"这段逻辑为什么这样写"——我才发现,这半年我写的代码,我自己都解释不了
前端·javascript·面试
谢小飞5 小时前
大文件上传很难?学会这招,GB文件秒传不是梦
前端·node.js
程序员黑豆6 小时前
Windows 系统 Java 环境变量配置全攻略:解决“不是内部或外部命令”
java·前端·ai编程
To_OC6 小时前
别只拿 useRef 绑 DOM 了,搭配 Web Worker 解决页面卡顿才是真的香
前端·react.js·dom