Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 596 Bytes

README.md

File metadata and controls

46 lines (33 loc) · 596 Bytes

NestJS microservices example app

Description

Start separate microservices with one NestJS app.

Installation

$ npm install

Running the app

# development
$ npm run start posts
$ npm run start users
$ npm run start

# watch mode
$ npm run start:dev posts
$ npm run start:dev users
$ npm run start:dev

# production mode
$ npm run start:prod posts
$ npm run start:prod users
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

License

Nest is MIT licensed.