meteor run

Run a meteor development server in the current project. Searches upward from the current directory for the root directory of a Meteor project

Options

NameDescription
targetIf you have added a platform to your app with 'meteor add-platform', you can pass one of the following targets as an argument to this command
--port, -p [port]Port to listen on (instead of the default 3000)
--inspect [port]Enable server-side debugging via debugging clients like the Node.js command-line debugger, Chrome DevTools, or Visual Studio Code
--inspect-brk [port]Enable server-side debugging via debugging clients like the Node.js command-line debugger, Chrome DevTools, or Visual Studio Code. The server will be paused at startup, waiting for clients to attach to the process on the specified port
--mobile-serverLocation where mobile builds connect to the Meteor server. Defaults to your local IP and the port that the Meteor server binds to. Can include a URL scheme (for example, --mobile-server https://example.com:443)
--cordova-server-port <port>Local port where Cordova will serve the content. It's important when multiple Cordova apps are build from the same Meteor app source code as by default the port is generated using the id inside .meteor/.id file
--productionSimulate production mode. Minify and bundle CSS and JS files
--raw-logsRun without parsing logs from stdout and stderr
--settings, -s <JSON File>Set optional data for Meteor.settings on the server
--release <release>Specify the release of Meteor to use
--verbosePrint all output from builds logs
--no-lintDon't run linters used by the app on every rebuild
--no-release-checkDon't run the release updater to check for new releases
--allow-incompatible-updateAllow packages in your project to be upgraded or downgraded to versions that are potentially incompatible with the current versions, if required to satisfy all package version constraints
--extra-packages <packages>Run with additional packages (comma separated, for example: --extra-packages "package-name1, package-name2@1.2.3")
--exclude-archs <architectures>Don't create bundles for certain web architectures (comma separated, for example: --exclude-archs "web.browser.legacy, web.cordova")