Created
March 10, 2015 21:02
-
-
Save 5a494d/be0d88d76452c2fb0398 to your computer and use it in GitHub Desktop.
npm-proxy.sh
This file contains hidden or 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
#!/bin/bash | |
echo "Configurating proxy server" | |
npm config set proxy http://proxy.company.com:8080 | |
npm config set https-proxy http://proxy.company.com:8080 | |
echo "Done !" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment