51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

npm 镜像源 -nodejs

npm 官方原始镜像网址是:https://registry.npmjs.org/
淘宝 NPM 镜像:http://registry.npmmirror.com
阿里云 NPM 镜像:https://npm.aliyun.com
腾讯云 NPM 镜像:https://mirrors.cloud.tencent.com/npm/
华为云 NPM 镜像:https://mirrors.huaweicloud.com/repository/npm/
网易 NPM 镜像:https://mirrors.163.com/npm/
中国科学技术大学开源镜像站:http://mirrors.ustc.edu.cn/
清华大学开源镜像站:https://mirrors.tuna.tsinghua.edu.cn/
腾讯,华为,阿里的镜像站基本上比较全

查看当前的镜像源:npm config get registry

npm config get registry

1-使用淘宝镜像源加速 NPM

最新的:

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

之前的:

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

使用阿里云 镜像源加速 NPM

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

使用腾讯云镜像源加速 NPM

npm config set registry http://mirrors.cloud.tencent.com/npm/

npm 官方原始镜像

npm config set registry https://registry.npmjs.org/
赞(3)
未经允许不得转载:工具盒子 » npm 镜像源 -nodejs