Skip to content

Instantly share code, notes, and snippets.

@alienlebarge
Last active December 30, 2024 14:18
Setting proxy with node.js

Node.js behind a proxy

Write proxy settings

$ npm config set proxy http://localhost:3128
$ npm config set https-proxy http://localhost:3128

This config is great for SquidMan app.

Delete proxy settings

$ npm config delete http-proxy
$ npm config delete https-proxy
@andig
Copy link

andig commented Apr 22, 2021

Does this config even apply to node or just to npm?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment