Start the Emulators in Development

Learn how to start the emulators in development.

Starting the emulators in the development

Open the services/web/firebase/package.json file. We need to change the dev NPM script so that it starts the Firebase emulators.

"scripts": {
  "dev": "firebase emulators:start",
}

Let’s see this in action. In your terminal, navigate to services/web and start the development environment with npm run dev.

...