关于npm:npm-i-安装依赖卡慢失败等很久不成功错误等等

36次阅读

共计 699 个字符,预计需要花费 2 分钟才能阅读完成。


 在装置依赖的时候,有时候 npm i 会很慢,甚至不胜利,谬误等等,其中起因之一就是间接应用 npm 外国源、国内拜访国外源网站的网络必定慢,所以卡顿

上面测试比照一下国外镜像源和国内阿里的淘宝源哪个速度快些。

镜像下载、域名解析、工夫同步请点击 阿里巴巴开源镜像站:https://developer.aliyun.com/…

先用国外镜像源

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

查看是否更换

npm config get registry

装置依赖试下速度

npm i

如图

用了 8 秒左右

在换上 阿里巴巴开源镜像站 -OPSX 镜像站里的淘宝 NPM 镜像

npm config set registry https://registry.npmmirror.com
查看是否更换

npm config get registry
装置依赖

npm i
如图

用了 5 秒左右,比国外源镜像快了不少,顺带一提的是淘宝 NPM 镜像站切换新域名了

新的 Web 站点:https://npmmirror.com,Registry Endpoint:https://registry.npmmirror.com。随着新的域名曾经正式启用,老 http://npm.taobao.org 和 http://registry.npm.taobao.org 域名将于 2022 年 05 月 31 日零时起进行服务

所以之前用这个

npm config set registry https://registry.npm.taobao.org

切换的记得改下源哦

改成

npm config set registry https://registry.npmmirror.com

正文完
 0