Start a NestJS Application
Learn how to run the NestJS app in development and production mode.
We'll cover the following...
In this lesson, we’ll learn how to start our application in different modes. We’ll start the application in development mode, build it for production, and finally start it in production mode.
Starting in development mode
To start our NestJS application in development mode, we use the npm run start:dev
command. This command runs ...