CLI

The main tool provided by NestJS is its CLI, which mimics the Angular CLI in many ways.

For instance, creating a NestJS project is as simple as this:

npx @nestjs/cli new-project-name

It supports schematics and can be used to generate starting code for services, controllers, pipes, guards, and so on. We will use this CLI on multiple occasions while developing our backend application.