Search⌘ K
AI Features

Running and Debugging a Meteor Application

Explore how to run and debug Meteor applications effectively. Understand the Meteor build process with Isobuild and learn client-side debugging with browser tools plus server-side debugging using inspect flags to identify and fix errors.

The Meteor build tool

When we type meteor run at the command line to run our application, a lot happens behind the scenes to ensure that our application is built.

When we type meteor run in the command line to run our application, a lot happens behind the scenes to ensure that our application is built. The Meteor build tool is called Isobuild and is responsible for bundling our source code into runnable programs. Typing meteor run triggers the build tool, which goes through the following stages to build and run our project:

  • Reads project metadata
  • Initializes the version file
  • Resolves constraints
  • Downloads missing
...