node.js - npm failing to encode %5C -
i trying connect npm behind proxy uses domain. trying implement solution this question.
npm config set proxy "http://domain%5cusername:password@servername:port/"
however, when try this, ends turning string into:
http://domain/%5cusername:password@servername:port/
note "/" between "domain" , "%5c", doesn't encode.
i have tried in both git bash , windows command-line. i've tried , without quotations. same result.
why isn't npm, or whoever, encoding %5c properly?
Comments
Post a Comment