linux设置http代理

#系统代理设置默认使用的代理
http_proxy=http://ip:port/
https_proxy=$http_proxy
export http_proxy https_proxy



npm config set proxy ip:port
npm config set https-proxy ip:port
npm config get proxy





npm config delete proxy
npm config delete https-proxy

你可能感兴趣的:(linux,http,运维)