You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're on Windows, and behind a corporate proxy, the only real workaround that I can think of would be to install something like Cntlm, setup a local proxy (without a username / password) that forwards to your corporate one with the correct credentials.
However, this may violate security rules, so you'd want to consult with your IT, go through proper channels etc.
Definitely not an ideal work around, but it's the only thing that I've found that might work on windows machines.
Even using Cygwin I was not able to download / read the unicode file.
The Regex used to to parse the
process.env.http_proxy
only works when the env variable is in thehttp://proxyurl:port
format.For those of us stuck behind the corporate firewall:
http://username:password@proxyurl:port
, the regex does not parse the url correctly.The line in question being:
var proxyVars = proxyServer.match(/^([^:/]*:[/]{2})?([^:/]+)(:([0-9]+))?/i);
This is really unfortunate for those of us on windows, because we have no place like
"/usr/share/unicode/
to put the file either.The text was updated successfully, but these errors were encountered: