Node.js Microservice with NestJS: Part 2 - Using the NestJS CLI
Introducing the Nest CLI The NestJS framework provides a Command Line Interface (CLI) that can be used to generate NestJS projects and components of various types, such as services and controllers. It is build on top of the angular schematics ( @schematics/angular ) code generation framework. In this second installment on building a NestJS microservice, we will use the Nest CLI to bootstrap our tour-service microservice into the autotoor-app repo. For more details about the service we are building and what we have done so far, check out the following posts: An Overview of the App - An overiew of the entire application we will be building, both frontend and backend. Node.js Microservice with NestJS: Part 1 - Service Overview - An overview of the NestJS microservice we will be building. Installing the CLI Since our demo project is using pnpm we will use it to install the Nest CLI as follows: pnpm add -g @nestjs/cli Instructions for installing the Nest CLI in other ways c...