Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uttesh/nest-mongo-generic
simple NESTJS + MONGOOSE boiler plate with generic controller and service implementations
https://github.com/uttesh/nest-mongo-generic
generic-controllers generic-repository generics mongodb mongoose nestjs typescript
Last synced: about 3 hours ago
JSON representation
simple NESTJS + MONGOOSE boiler plate with generic controller and service implementations
- Host: GitHub
- URL: https://github.com/uttesh/nest-mongo-generic
- Owner: uttesh
- Created: 2020-05-13T11:39:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T02:32:22.000Z (almost 2 years ago)
- Last Synced: 2023-04-05T18:55:24.882Z (over 1 year ago)
- Topics: generic-controllers, generic-repository, generics, mongodb, mongoose, nestjs, typescript
- Language: TypeScript
- Homepage:
- Size: 302 KB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Description
[Nest](https://github.com/nestjs/nest) framework TypeScript + MongoDB starter repository.
Implemented the base controller and service to avoid the CRUD related duplication code and made generic controller and service implementaitons## Installation
```bash
$ npm install
```## Running the app
```bash
# development
$ npm run start# watch mode
$ npm run start:dev# production mode
$ npm run start:prod
```## Test
```bash
# unit tests
$ npm run test# e2e tests
$ npm run test:e2e# test coverage
$ npm run test:cov
```