Conversation via proxy

I am trying to use conversation through a corporate proxy. I read here that I have to add some things to my .bowerrc file. I did and now instead of getting an error not found, I get ECONNRESET.

npm works great.

Any suggestions?

errors:

last:

Request to https://bower.herokuapp.com/packages/bootstrap failed: tunneling socket could not be established, cause=Parse Error 

and their relationship:

 bower retry Request to https://bower.herokuapp.com/packages/jquery faile d with ECONNRESET, retrying in 12.4s bower retry Request to https://bower.herokuapp.com/packages/angular-mock s failed with ECONNRESET, retrying in 9.1s bower retry Request to https://bower.herokuapp.com/packages/angular-scen ario failed with ECONNRESET, retrying in 15.0s bower retry Request to https://bower.herokuapp.com/packages/angular-rout e failed with ECONNRESET, retrying in 15.7s bower retry Request to https://bower.herokuapp.com/packages/angular-sani tize failed with ECONNRESET, retrying in 11.6s bower retry Request to https://bower.herokuapp.com/packages/angular-cook ies failed with ECONNRESET, retrying in 9.1s bower retry Request to https://bower.herokuapp.com/packages/angular-reso urce failed with ECONNRESET, retrying in 25.6s bower retry Request to https://bower.herokuapp.com/packages/angular fail ed with ECONNRESET, retrying in 26.3s bower retry Request to https://bower.herokuapp.com/packages/angular-mock s failed with ECONNRESET, retrying in 24.8s bower retry Request to https://bower.herokuapp.com/packages/json3 failed with ECONNRESET, retrying in 20.1s bower retry Request to https://bower.herokuapp.com/packages/bootstrap fa iled with ECONNRESET, retrying in 17.2s bower retry Request to https://bower.herokuapp.com/packages/angular-cook ies failed with ECONNRESET, retrying in 16.8s bower retry Request to https://bower.herokuapp.com/packages/jquery faile d with ECONNRESET, retrying in 18.0s bower retry Request to https://bower.herokuapp.com/packages/angular-sani tize failed with ECONNRESET, retrying in 22.6s bower retry Request to https://bower.herokuapp.com/packages/es5-shim fai led with ECONNRESET, retrying in 26.3s bower retry Request to https://bower.herokuapp.com/packages/angular-scen ario failed with ECONNRESET, retrying in 22.7s bower retry Request to https://bower.herokuapp.com/packages/angular-rout e failed with ECONNRESET, retrying in 20.9s bower ECONNRESET 
+6
source share
1 answer

You can try the following:

 npm --proxy username: password@proxy :8080[/someproxyjs.pac] install -g bower 

Note: Begin with http and replace username: password. Some of the proxies may automatically script to fill out a complete replacement [/someproxyjs.pac]

+1
source

All Articles