Skip to content

Instantly share code, notes, and snippets.

@JulienFolliot
Created March 23, 2015 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JulienFolliot/372cb3ca05bc4ecc5747 to your computer and use it in GitHub Desktop.
Save JulienFolliot/372cb3ca05bc4ecc5747 to your computer and use it in GitHub Desktop.
Git, NPM, Bower, Brackets through local proxy (using Fiddler)
{
"proxy":"http://127.0.0.1:8888",
"https-proxy":"http://127.0.0.1:8888"
}
#NPM config
npm config set proxy http://127.0.0.1:8888
npm config set https-proxy http://127.0.0.1:8888
#GIT
git config --global http.proxy http://127.0.0.1:8888
git config --global https.proxy http://127.0.0.1:8888
#Global environment
set HTTP_PROXY=http://127.0.0.1:8888
set HTTPS_PROXY=http://127.0.0.1:8888
{
"proxy": "http://127.0.0.1:8888"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment