修改npm下载地址为淘宝镜像
修改 npm 下载地址
修改为国内淘宝镜像
# 修改为新淘宝镜像(推荐)
npm config set registry https://registry.npmmirror.com/
# 旧
npm config set registry http://registry.npm.taobao.org/
其他地址
# 修改为 cnpmjs 镜像
npm config set registry http://r.cnpmjs.org/
# 修改为原始地址
npm config set registry http://registry.npmjs.org/
查看当前下载地址
# 查看当前下载地址
npm get registry
# 或
npm config get registry