Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/marcosoliveira91/nestjs-boilerplate

A Node.js boilerplate leveraging NestJS framework with DDD, CQRS, and Hexagonal Architecture principles.
https://github.com/marcosoliveira91/nestjs-boilerplate

backend boilerplate cqrs ddd ddd-cqrs domain-driven-design hexagonal-architecture mysql nestjs nodejs openapi-spec typescript

Last synced: 2 months ago
JSON representation

A Node.js boilerplate leveraging NestJS framework with DDD, CQRS, and Hexagonal Architecture principles.

Awesome Lists containing this project

README

        

## Description

[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.

## Installation

```bash
$ docker compose -f ./docker/docker-compose.yml up -d
$ pnpm install
```

## Running the app

```bash
# development
$ pnpm run start

# watch mode
$ pnpm run start:dev

# production mode
$ pnpm run start:prod
```

## Test

```bash
# unit tests
$ pnpm run test

# e2e tests
$ pnpm run test:e2e

# test coverage
$ pnpm run test:cov
```