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