meteor Using Meteor with a Proxy Server Using the `HTTP[S]_PROXY` env var

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

This page describes how to use the Meteor command-line tool (for example, when downloading packages, deploying your app, etc) behind a proxy server.

Like a lot of other command-line software, the Meteor tool reads the proxy configuration from the HTTP_PROXY and HTTPS_PROXY environment variables (the lower case variants work, too). Examples of running Meteor behind a proxy:

  • on Linux or Mac OS X
export HTTP_PROXY=http://user:[email protected]:5678
export HTTPS_PROXY=http://user:[email protected]:5678
meteor update
  • on Windows
SET HTTP_PROXY=http://user:[email protected]:5678
SET HTTPS_PROXY=http://user:[email protected]:5678
meteor update


Got any meteor Question?