npm 淘宝镜像安装
镜像源
阿里云镜像:npm config set registry https://registry.npmmirror.com/
腾讯云镜像:npm config set registry http://mirrors.cloud.tencent.com/npm/
华为云镜像:npm config set registry https://mirrors.huaweicloud.com/repository/npm/
单次使用
npm install --registry=https://registry.npm.taobao.org
永久替换
npm config set registry https://registry.npm.taobao.org
原镜像
npm config set registry https://registry.npmjs.org
检测是否安装成功
npm config get registry
npm查看全局安装过的包
npm list -g --depth 0
npm 清除缓存
npm cache clean --force