https://github.com/jclaveau/nestjs-experiments
Discovering Nestjs
https://github.com/jclaveau/nestjs-experiments
Last synced: 3 months 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-09T10:48:07.000Z (7 months ago)
- Last Synced: 2025-02-08T03:14:24.556Z (5 months ago)
- Language: TypeScript
- Size: 475 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/jclaveau/nestjs-experiments/actions/workflows/tests.yml)
[](https://github.com/jclaveau/nestjs-experiments/actions/workflows/format.yml)
[](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).