Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jclaveau/nestjs-experiments
Discovering Nestjs
https://github.com/jclaveau/nestjs-experiments
Last synced: 27 days ago
JSON representation
Discovering Nestjs
- Host: GitHub
- URL: https://github.com/jclaveau/nestjs-experiments
- Owner: jclaveau
- License: mit
- Created: 2022-01-07T21:55:59.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-08T23:29:57.000Z (about 1 month ago)
- Last Synced: 2024-12-09T00:27:27.395Z (about 1 month ago)
- Language: TypeScript
- Size: 456 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Tests](https://github.com/jclaveau/nestjs-experiments/actions/workflows/tests.yml/badge.svg)](https://github.com/jclaveau/nestjs-experiments/actions/workflows/tests.yml)
[![Format](https://github.com/jclaveau/nestjs-experiments/actions/workflows/format.yml/badge.svg?event=push)](https://github.com/jclaveau/nestjs-experiments/actions/workflows/format.yml)
[![codecov](https://codecov.io/gh/jclaveau/nestjs-experiments/branch/main/graph/badge.svg?token=C5ElNWNc41)](https://codecov.io/gh/jclaveau/nestjs-experiments)
## Description (WIP)Expirementing architectures and features with [Nest](https://github.com/nestjs/nest) in real CI conditions.
Goals:
- Full end to end tests
- Full coverage
- Formatted with [ESlint](https://eslint.org/) (No prettier to avoid remain free of opinions).
- Automatically updated dependencies (Handled by [Renovate](https://www.whitesourcesoftware.com/free-developer-tools/renovate/))
- [12-Factors](https://12factor.net/)
- [Inversion of Control](https://www.tutorialsteacher.com/ioc/inversion-of-control)## Installation
```bash
$ yarn install
```## Running the app
```bash
# development
$ yarn start# watch mode
$ yarn start:dev# production mode
$ yarn start:prod
```## Test
```bash
# unit tests
$ yarn test# test coverage
$ yarn test:cov
```## License
Nest is [MIT licensed](LICENSE).