如何让bower安装在代理后面工作?

时间:2015-10-02 06:02:49

标签: npm bower

我设置了(我认为)windows和npm的所有代理设置。然而凉亭没有,这是我得到的错误:

  download https://github.com/jquery/jquery/archive/2.1.4.tar.gz
     retry Download of https://github.com/jquery/jquery/archive/2.1.4.tar.gz failed with ECONNRESET, retrying in 1.7s
     retry Download of https://github.com/jquery/jquery/archive/2.1.4.tar.gz failed with ECONNRESET, retrying in 2.2s
    Error: EPERM: operation not permitted, unlink...

取消链接后显示的文件甚至不存在。

Bower版本:1.5.3 节点版本:4.1.1 操作系统:Windows_NT 6.1.7601 x64。

如何避免此错误?

1 个答案:

答案 0 :(得分:0)

请点击此处: https://github.com/bower/spec/blob/master/config.md#https-proxy

.bowerrc中,您可以添加以下属性:

"proxy":"http://<host>:<port>",
"https-proxy":"http://<host>:<port>"

此处还有一个示例,其中包括代理的用户和密码验证(如果是这种情况):

"proxy":"http://<user>:<password>@<host>:<port>",
"https-proxy":"http://<user>:<password>@<host>:<port>"

另外,请看一下Stack上的这个问题: 的 bower proxy configuration