An open API service indexing awesome lists of open source software.

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

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
```