淘宝镜像最新源
https://registry.npmmirror.com/
腾讯云镜像源
https://mirrors.cloud.tencent.com/npm/
cnpm是一个基于npm的中国镜像源
https://r.cnpmjs.org/
1 2 3 4 5 6 7 8 | # 查询当前使用的镜像源 npm get registry # 设置为淘宝镜像源 npm config set registry https://registry.npmmirror.com/ # 还原为官方镜像源 npm config set registry https://registry.npmjs.org/ |
yarn设置国内镜像源
1 2 3 4 5 6 7 8 9 | # 查询当前使用的镜像源 yarn config get registry # 设置为淘宝镜像源 yarn config set registry https://registry.npmmirror.com/ # 还原为官方镜像源 yarn config set registry https://registry.yarnpkg.com/ 使用淘宝镜像源加速 NPM |
pnpm设置国内镜像源
1 2 3 4 5 6 7 8 | # 查询当前使用的镜像源 pnpm get registry # 设置为淘宝镜像源 pnpm config set registry https://registry.npmmirror.com/ # 还原为官方镜像源 pnpm config set registry https://registry.npmjs.org/ |
最新的:
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
npm install -g nrm
使用
查看可选的源
nrm ls
切换
如果要切换到taobao源,执行命令
nrm use taobao
测试速度
nrm test
评论(0)