npm ERR! code ETIMEDOUTnpm ERR! errno ETIMEDOUTnpm ERR! network request to http://nexus.h3yun.com:

155 阅读1分钟

👏作者简介:大家好,我是小童,Java开发工程师,CSDN博客博主,Java领域新星创作者
📕系列专栏:前端、Java、Java中间件大全、微信小程序、微信支付、若依框架、Spring全家桶
📧如果文章知识点有错误的地方,请指正!和大家一起学习,一起进步👀
🔥如果感觉博主的文章还不错的话,请👍三连支持👍一下博主哦
🍂博主正在努力完成2023计划中:以梦为马,扬帆起航,2023追梦人 

问题描述

在 cmd 安装 yarn  出现安装失败  时间超时问题   如图下:

npm ERR! code ETIMEDOUT
npm ERR! errno ETIMEDOUT
npm ERR! network request to http://nexus.h3yun.com:8888/repository/npm-all/yarn failed, reason: connect ETIMEDOUT 122.9.139.231:8888
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\86176\AppData\Roaming\npm-cache\_logs\2023-02-13T01_41_09_682Z-debug.log

 

 

 

 解决方法:

检查node与npm是否安装成功

node -v  npm -v

全局安装epress测试npm是否能正常使用 npm install express -g

 

安装失败,连接超时,进行如下操作

npm config set proxy null 清空代理
npm cache clean --force 清理缓存
npm config set registry http://registry.npmjs.org/ 重新设置镜像源
npm config set registry https://registry.npm.taobao.org 国内淘宝镜像

(如果嫌安装依赖慢的话 可以使用这个)

 

 

 再次安装express进行测试