Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mrsauravsahu/template-nestjs-monorepo

WIP
https://github.com/mrsauravsahu/template-nestjs-monorepo

Last synced: about 1 month ago
JSON representation

WIP

Awesome Lists containing this project

README

        

# template-nestjs-monorepo

## description

[nest.js](https://github.com/nestjs/nest) monorepo template

## installation

```bash
$ npm install
```

## running the services

```bash
# development
$ npm run start
# example: npm run start gateway

# watch mode
$ npm run start:dev
# example: npm run start:dev gateway

# production mode
$ npm run start:prod
# example: npm run start:prod gateway
```

## test

you can run the tests from the root directory for all services together

```bash
# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov
```