npm配置
Posted delpy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm配置相关的知识,希望对你有一定的参考价值。
1.查看npm的config
npm config ls
2.设置代理
npm config set proxy http://127.0.0.1:1080(SS)
npm config set https-proxy https://127.0.0.1:1080(SS)
删除代理
npm config rm proxy
3.设置淘宝源
临时使用 npm --registry https://registry.npm.taobao.org install ***
永久使用 npm config set registry https://registry.npm.taobao.org
使用cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org
以上是关于npm配置的主要内容,如果未能解决你的问题,请参考以下文章