node.js 和 npm的 镜像源的修改
npm镜像源的更改。
方法1: 直接改源
找到下载node的文件目录-->node_modules-->npm-->npmrc 加入下面内容
registry = https://registry.npm.taobao.org
直接将配置写死,以后就都是淘宝的镜像源了。
方法2 : 使用nrm
win+R ->输入cmd -> (使用npm安装nrm) npm i -g nrm --registry=https://registry.npm.taobao.org ->(查看镜像源 *是目前使用的镜像源) nrm ls
->(切换镜像源) nrm use taobao -> (查看镜像源) nrm ls
方法3:安装cnpm或者tnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
或者
npm install -g tnpm --registry=http://registry.npm.alibaba-inc.com
共 0 条评论