Skip to content

Perfect for kickstarting your Nest.js project or as a foundation for reusable components. A boilerplate for building scalable and maintainable applications with NestJS. This project provides a clean structure, best practices, and pre-configured integrations for rapid development.

Notifications You must be signed in to change notification settings

neuroborus/nest-template

Repository files navigation

Backend Skeleton

Quickstart

  1. Create .env file and fill with the "REQUIRED" variables from .env.xmpl
  2. npm ci
  3. npm run start

Suggested Project Layers

As long as the application is small, there's no need to add extra layers.
However, if necessary, it is recommended to choose from the list below.

This layers designed to maintain structure as it scales and organized by levels.

  • By convention, higher-level layers must not be imported into lower-level ones.
  • Additionally, layers on the same level should not import each other.

* Exists by default

└── *apis/ - contain controllers, dtos
└── features/ - contain specific feature logic
└── *services/ - contain general processing logic
└── stores/ - Repository pattern implementation - api for stores (e.g. DB)
└── contracts/, drivers/ - interfaces for external systems
└── helpers/, *config/, *entities/ - the lowest level or independent layers

Healthcheck

/health

{
  "status": "OK",
  "port": 3000,
  "logLevel": "info"
}

Swagger

/swagger

About

Perfect for kickstarting your Nest.js project or as a foundation for reusable components. A boilerplate for building scalable and maintainable applications with NestJS. This project provides a clean structure, best practices, and pre-configured integrations for rapid development.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published