Created
June 29, 2018 11:01
-
-
Save sreepurnajasti/8929f48820b68ae43676e9e72715bd62 to your computer and use it in GitHub Desktop.
npm proxy settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For setting proxy: | |
npm config set strict-ssl false | |
npm config set registry http://registry.npmjs.org/ | |
npm config set https-proxy http://un:pw@proxyadd:port/ | |
npm config set proxy http://un:pw@proxyadd:port/ | |
For removing proxy: | |
npm config rm proxy | |
npm config rm https-proxy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment