我设置了(我认为)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。
如何避免此错误?
答案 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 强>