📣读完这篇文章里你能收获到
- 一条命令快速切换至淘宝镜像
- 恢复官方镜像
文章目录
- 一、设置淘宝镜像源
- 二、恢复官方镜像源
- 三、查看当前使用的镜像
一、设置淘宝镜像源
npm config set registry https://registry.npm.taobao.org
服务器建议全局设置
sudo npm config set registry https://registry.npm.taobao.org -g
二、恢复官方镜像源
npm config set registry https://registry.npmjs.org
三、查看当前使用的镜像
npm config get registry
- 如果返回https://registry.npm.taobao.org/,说明配置的是淘宝镜像。
- 如果返回https://registry.npmjs.org/,说明配置的是官方镜像。