npm 淘宝镜像安装

 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

  

posted @ 2021-05-14 16:59  Hexrui  阅读(122)  评论(0编辑  收藏  举报
返回顶部