@tseisel/nestjs-schematics

0.3.0 • Public • Published

NestJS schematics

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.

How to use

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

application

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

azure

Generates configuration files to run a pull request check pipeline on an Azure DevOps build Agent.

nest g -c @tseisel/nestjs-schematics azure

docker

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

Contributing

Because NestJS borrows a lot from Angular, it uses exactly the same tooling for template-based project generation.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.3.0
    56
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.3.0
    56
  • 0.2.2
    77
  • 0.2.1
    67
  • 0.2.0
    6
  • 0.1.0
    0

Package Sidebar

Install

npm i @tseisel/nestjs-schematics

Weekly Downloads

206

Version

0.3.0

License

MIT

Unpacked Size

37.6 kB

Total Files

59

Last publish

Collaborators

  • tseisel