// 查看镜像 npm config get registry // 更换镜像 npm config set registry xxxxxx // 恢复官方默认镜像 npm config set registry https://registry.npmjs.org // 最新的配置淘宝镜像,原‘https://registry.npm.taobao.org’已停止服务 npm config set registry https://registry.npmmirror.com // 清空缓存 npm cache clean --force // 使用cnpm npm install -g cnpm --registry=https://registry.npmmirror.com