Search code examples
node.jsnpmproxypacnpm-config

Using npm behind corporate proxy .pac


I need to download several packages through npm but our corporate proxy configuration is a .pac file (i'm on windows)

I have already tried

npm config set proxy http://mydomain\username:[email protected]:8181/proxy.pac
npm config set https-proxy http://mydomain\username:[email protected]:8181/proxy.pac

or

npm config set proxy http://1.2.3.4:8181/proxy.pac
npm config set https-proxy http://1.2.3.4:8181/proxy.pac

but it doesn't work...

any suggestion? thanks


Solution

  • I've just had a very similar problem, where I couldn't get npm to work behind our proxy server.

    My username is of the form "domain\username" - including the slash in the proxy configuration resulted in a forward slash appearing. So entering this:

    npm config set proxy "http://domain\username:password@servername:port/"
    

    then running this npm config get proxy returns this: http://domain/username:password@servername:port/

    Therefore to fix the problem I instead URL encoded the backslash, so entered this:

    npm config set proxy "http://domain%5Cusername:password@servername:port/"
    

    and with this the proxy access was fixed.