Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/dsoaress/nest-clean-architecture
- Owner: dsoaress
- Created: 2022-05-27T22:59:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-25T14:19:21.000Z (over 2 years ago)
- Last Synced: 2023-03-03T21:44:25.627Z (almost 2 years ago)
- Topics: clean-architecture, nestjs
- Language: TypeScript
- Homepage:
- Size: 145 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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"
}
```