Defines custom generation templates - also known as schematics - for the NestJS framework.
This project defines the following templates:
Collection name | Description |
---|---|
application |
Generates a new NestJS project. |
azure |
Generate Azure Pipelines definitions. |
docker |
Generates Docker configuration files. |
Due to a limitation of the NestJS CLI, you have to install both this package and @nestjs/cli
globally:
npm i -g @nestjs/cli @tseisel/nestjs-schematics
This is an alternative to the default project template created when running nest new
.
I've grown tired configuring my favorite tools whenever I start a new project, so I made it a template.
It takes a more opinionated approach by configuring various tools that improve code quality, so you can directly focus on writing great features instead of taking the whole day writing configurations files.
- TypeScript in strict mode
- Automated code formatting with Prettier
- Automated code linting with ESLint
- Build and bundle with Webpack
- Auto-generated Swagger docs
- Health-check endpoint
Run the following command to generate a new project in a subfolder:
nest new -c @tseisel/nestjs-schematics
Generates configuration files to run a pull request check pipeline on an Azure DevOps build Agent.
nest g -c @tseisel/nestjs-schematics azure
Generates configuration files that are required for development and deployment with Docker. This schematic can be applied on an existing project.
The following files are generated at the project root:
.dockerignore
Dockerfile
docker-compose.yml
If any of these files already exist, it is replaced by the generated version.
nest g -c @tseisel/nestjs-schematics docker
Because NestJS borrows a lot from Angular, it uses exactly the same tooling for template-based project generation.