切换npm源的几种方法
切换npm源可以通过以下几种方法实现:
- 命令行临时使用其他源:
npm install --registry https://registry.npm.taobao.org
- 使用
nrm
工具来管理和切换源:
# 安装nrm
npm install -g nrm
# 列出可用源
nrm ls
# 切换到taobao源
nrm use taobao
- 修改
.npmrc
文件:
echo 'registry=https://registry.npm.taobao.org' >> ~/.npmrc
- 使用npm的配置命令:
npm config set registry https://registry.npm.taobao.org
- 使用
yarn
的配置命令(如果你使用yarn):
yarn config set registry https://registry.npm.taobao.org
记得替换https://registry.npm.taobao.org
为你想要切换到的npm源地址。
评论已关闭