1.临时使用某个镜像
npm install package-name --registry=https://registry.npm.taobao.org
2.永久切换镜像源
# 淘宝镜像
npm config set registry https://registry.npm.taobao.org
# cnpm镜像
npm config set registry http://r.cnpmjs.org
# 阿里镜像
npm config set registry https://npm.aliyun.com
3.切换回npm官方镜像
npm config set registry https://registry.npmjs.org
4.查看当前配置的镜像源
npm config get registry