指定代理的 npm 安装

问题描述 投票:0回答:3

我正在尝试 npm 安装。但它失败了,因为我位于防火墙后面。是否有任何选项可以让我指定代理详细信息以及 npm install 命令。

我看到了选项 npm config set proxy

但我正在寻找特定于 npm install 命令的东西

node.js npm package-managers
3个回答
1
投票

试试这个:

npm --proxy http://myusername:[email protected]:8080 \
--without-ssl --insecure -g install

0
投票
npm config set proxy http://proxy.company.com:8080 
npm config set https-proxy http://proxy.company.com:8080

示例:

npm config set proxy http://10.50.225.222:3128
npm config set https-proxy http://10.50.225.222:3128


0
投票

设置 npm 代理

对于 HTTP:

npm config set proxy http://proxy_host:port

对于 HTTPS:

如果有的话使用https代理地址

npm config set https-proxy https://proxy.company.com:8080

否则重用http代理地址

npm config set https-proxy http://proxy.company.com:8080
© www.soinside.com 2019 - 2024. All rights reserved.