Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dsoaress/nest-clean-architecture

A proof of concept of applying Clean Architecture in Nest.js applications.
https://github.com/dsoaress/nest-clean-architecture

clean-architecture nestjs

Last synced: 15 days ago
JSON representation

A proof of concept of applying Clean Architecture in Nest.js applications.

Awesome Lists containing this project

README

        


Nest Logo

# Nest.js Clean Architecture

[![codecov](https://codecov.io/gh/dsoaress/nest-clean-architecture/branch/main/graph/badge.svg?token=N3L06J3GQN)](https://codecov.io/gh/dsoaress/nest-clean-architecture)

## Description

A proof of concept of applying Clean Architecture in Nest.js applications.

## Installation

```bash
$ npm install
```

## Running the app

```bash
# development
$ npm run start

# watch mode
$ npm run start:dev

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

## API Reference

#### Get all users

```http
GET /users
```

#### Create a user

```http
POST /users
```

```json
{
"name": "Jane Doe",
"email": "[email protected]",
"password": "123456"
}
```