【Node】修改 npm 下载地址为淘宝镜像

查看基本配置

npm config list

查看所有配置

npm config list -l

查看当前下载地址

npm get registry

临时生效修改npm下载的地址(国内淘宝镜像地址)

npm --registry https://registry.npm.taobao.org install express

永久生效修改npm下载的地址(国内淘宝镜像地址)

npm config set registry https://registry.npm.taobao.org

切换回默认的源

npm config set registry https://registry.npmjs.org

npm 安装包路径配置

npm config set cache "D:\xxx\xxx\node_global"

npm 缓存路径配置

npm config set prefix "D:\xxx\xxx\npm_cache"
posted @ 2021-07-13 16:26  努力挣钱的小鑫  阅读(186)  评论(0编辑  收藏  举报