I was going to try out Aurelia’s skeleton navigation project again and ran into company proxy issues. Aurelia uses JSPM instead of just NPM, so this is some new territory for me. It took some Bingooling and I finally found the right combination.
Error: tunneling socket could not be established, cause = Parse Error
I had to
- Set the environment variables HTTP_Proxy and HTTPS_Proxy. I’m on Windows 7.
- use git config --global http.proxy http://user:password@proxy.com:port to configure the proxy to work with github.
- Answer from StackOverflow
This creates a .gitconfig file in your c:/users/{user-name} folder.
There is an issue on JSPM’s Github that had a lot of conversation.
I hope that helps you. I’ll probably be back here to grab the use git config command again soon.