Start a NestJS Application
Explore how to start a NestJS application in development and production modes using the NestJS CLI. Learn to run your app with npm scripts for development, build your TypeScript code for production, and start your compiled app efficiently.
We'll cover the following...
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 the start script ...