编辑
2025-05-04
前端开发
0

目录

腾讯,华为,阿里的镜像站基本上比较全
推荐使用上面的方式指定npm镜像,当然方法不唯一,也可以用 nrm 去指定npm镜像
什么是nrm
使用
查看可选的源
切换
测试速度

npm源大全

  1. npm 官方原始镜像网址是https://registry.npmjs.org/
  2. 淘宝 NPM 镜像http://registry.npmmirror.com
  3. 阿里云 NPM 镜像https://npm.aliyun.com
  4. 腾讯云 NPM 镜像https://mirrors.cloud.tencent.com/npm/
  5. 华为云 NPM 镜像https://mirrors.huaweicloud.com/repository/npm/
  6. 网易 NPM 镜像https://mirrors.163.com/npm/
  7. 中国科学技术大学开源镜像站http://mirrors.ustc.edu.cn/
  8. 清华大学开源镜像站https://mirrors.tuna.tsinghua.edu.cn/

腾讯华为阿里的镜像站基本上比较全

使用淘宝镜像源加速 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://mirrors.huaweicloud.com/repository/npm/

返回npm 官方原始镜像

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

使用那个镜像,只需要 npm config set registry + 对应的镜像网址就好了

npm config set registry

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

npm config get registry

推荐使用上面的方式指定npm镜像,当然方法不唯一,也可以用 nrm 去指定npm镜像

什么是nrm

nrm 是一个 npm 源管理器,允许你快速地在 npm 源间切换。

使用

查看可选的源

nrm ls

切换

如果要切换到taobao源,执行命令

nrm use taobao

测试速度

nrm test
如果对你有用的话,可以打赏哦
打赏
ali pay
wechat pay

本文作者:Dageling003

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!