https://github.com/ericzon/nestjs-cats-mongoose
PoC to play with new NestJs v5 (RC2) and mongoose
https://github.com/ericzon/nestjs-cats-mongoose
mongodb mongoose nestjs nodejs typescript
Last synced: 3 months ago
JSON representation
PoC to play with new NestJs v5 (RC2) and mongoose
- Host: GitHub
- URL: https://github.com/ericzon/nestjs-cats-mongoose
- Owner: ericzon
- Created: 2018-05-04T11:02:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-04T13:05:57.000Z (about 8 years ago)
- Last Synced: 2025-03-17T12:33:59.560Z (over 1 year ago)
- Topics: mongodb, mongoose, nestjs, nodejs, typescript
- Language: TypeScript
- Homepage:
- Size: 128 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# poc-nest-mongodb
## Description
Just a PoC to play with new NestJs v5 (RC2) and mongoose.
## 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
```