Skip to main content
The Meteor CLI is the primary tool for developing, testing, and deploying Meteor applications.

Basic Usage

With no arguments, meteor runs the project in the current directory in local development mode:
You can run it from the root directory of the project or from any subdirectory.

Command Syntax

Global Options

--release
string
Specify the release of Meteor to use
--help
boolean
Display help information
--version
boolean
Print the Meteor version
--arch
boolean
Print the Meteor architecture name of the host

Debugging

Passing --inspect or --inspect-brk to meteor run, meteor test, or meteor test-packages enables debugging of the server process:

Bundled Commands

Meteor bundles Node.js and npm by default. You can use these commands to run the same versions that Meteor uses internally:

Installing Global npm Packages

You can install global npm packages that will be available to all apps using the same version of Meteor:
Any executable programs added by this command can be invoked like meteor node or meteor npm:
Note: You may need to reinstall these commands after updating to a different version of Meteor.

Getting Help

View help for any command:

Core Commands