当前位置:
npm设置淘宝镜像
2024-09-09
 144

使用npm安装依赖时很慢,可以设置淘宝镜像,2024年1月更换了新域名。


cmd在终端中做以下操作:


检测现在的镜像地址

npm config get registry

如果不是淘宝最新的镜像地址,更换为

// 清空缓存
npm cache clean --force
// 切换新源
npm config set registry https://registry.npmmirror.com
// 切换之后可以再次检测一下

设置淘宝镜像旧地址:npm config set registry https://registry.npm.taobao.org/
设置淘宝镜像最新地址:npm config set registry https://registry.npmmirror.com/
设置官方地址:npm config set registry https://registry.npmjs.org/