Thursday, January 14, 2016

Setting Up A Proxy For The Atom Text Editor

Atom is an excellent open source text editor that I have switched to recently. Atom requires a network connection to update itself, install packages etc. This usually just works out-of-the-box.

However, if you are behind a proxy server, the proxy settings for Atom can be specified as below. Run the commands below at the OS's command line.

Specify The Proxy Server In Atom

apm config set http-proxy [http://username:password@proxy.server.url.com:80]
apm config set https-proxy [http://username:password@proxy.server.url.com:80]
view raw atom_proxy_1 hosted with ❤ by GitHub

Verify The Proxy Server Specified In Atom

apm config get http-proxy
apm config get https-proxy
view raw atom_proxy_2 hosted with ❤ by GitHub