npm设置代理
Posted hecg95
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了npm设置代理相关的知识,希望对你有一定的参考价值。
工作环境走代理上网,npm不能下载,报错connect ETIMEDOUT
1.设置代理
## http
npm config set proxy=http://server:port
## https
npm config set https-proxy http://server:port
2.代理需要用户名密码
## http
npm config set proxy http://username:password@server:port
## https
npm confit set https-proxy http://username:password@server:port
3.取消代理
## http
npm config delete proxy
## https
npm config delete https-proxy
以上是关于npm设置代理的主要内容,如果未能解决你的问题,请参考以下文章