├── .gitignore ├── README.md ├── microservice-client ├── README.md ├── dist │ ├── app.controller.d.ts │ ├── app.controller.js │ ├── app.controller.js.map │ ├── app.module.d.ts │ ├── app.module.js │ ├── app.module.js.map │ ├── app.service.d.ts │ ├── app.service.js │ ├── app.service.js.map │ ├── main.d.ts │ ├── main.js │ ├── main.js.map │ ├── message.event.d.ts │ ├── message.event.js │ ├── message.event.js.map │ ├── tsconfig.build.tsbuildinfo │ ├── user-created.event.d.ts │ ├── user-created.event.js │ └── user-created.event.js.map ├── nest-cli.json ├── package-lock.json ├── package.json ├── src │ ├── app.controller.spec.ts │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── main.ts │ └── message.event.ts ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── tslint.json └── microservices-app ├── README.md ├── dist ├── app.controller.d.ts ├── app.controller.js ├── app.controller.js.map ├── app.module.d.ts ├── app.module.js ├── app.module.js.map ├── app.service.d.ts ├── app.service.js ├── app.service.js.map ├── main.d.ts ├── main.js ├── main.js.map └── tsconfig.build.tsbuildinfo ├── nest-cli.json ├── package-lock.json ├── package.json ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts └── main.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/README.md -------------------------------------------------------------------------------- /microservice-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/README.md -------------------------------------------------------------------------------- /microservice-client/dist/app.controller.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/app.controller.d.ts -------------------------------------------------------------------------------- /microservice-client/dist/app.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/app.controller.js -------------------------------------------------------------------------------- /microservice-client/dist/app.controller.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/app.controller.js.map -------------------------------------------------------------------------------- /microservice-client/dist/app.module.d.ts: -------------------------------------------------------------------------------- 1 | export declare class AppModule { 2 | } 3 | -------------------------------------------------------------------------------- /microservice-client/dist/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/app.module.js -------------------------------------------------------------------------------- /microservice-client/dist/app.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/app.module.js.map -------------------------------------------------------------------------------- /microservice-client/dist/app.service.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/app.service.d.ts -------------------------------------------------------------------------------- /microservice-client/dist/app.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/app.service.js -------------------------------------------------------------------------------- /microservice-client/dist/app.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/app.service.js.map -------------------------------------------------------------------------------- /microservice-client/dist/main.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /microservice-client/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/main.js -------------------------------------------------------------------------------- /microservice-client/dist/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/main.js.map -------------------------------------------------------------------------------- /microservice-client/dist/message.event.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/message.event.d.ts -------------------------------------------------------------------------------- /microservice-client/dist/message.event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/message.event.js -------------------------------------------------------------------------------- /microservice-client/dist/message.event.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/message.event.js.map -------------------------------------------------------------------------------- /microservice-client/dist/tsconfig.build.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/tsconfig.build.tsbuildinfo -------------------------------------------------------------------------------- /microservice-client/dist/user-created.event.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/user-created.event.d.ts -------------------------------------------------------------------------------- /microservice-client/dist/user-created.event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/user-created.event.js -------------------------------------------------------------------------------- /microservice-client/dist/user-created.event.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/dist/user-created.event.js.map -------------------------------------------------------------------------------- /microservice-client/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/nest-cli.json -------------------------------------------------------------------------------- /microservice-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/package-lock.json -------------------------------------------------------------------------------- /microservice-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/package.json -------------------------------------------------------------------------------- /microservice-client/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/src/app.controller.spec.ts -------------------------------------------------------------------------------- /microservice-client/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/src/app.controller.ts -------------------------------------------------------------------------------- /microservice-client/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/src/app.module.ts -------------------------------------------------------------------------------- /microservice-client/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/src/app.service.ts -------------------------------------------------------------------------------- /microservice-client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/src/main.ts -------------------------------------------------------------------------------- /microservice-client/src/message.event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/src/message.event.ts -------------------------------------------------------------------------------- /microservice-client/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /microservice-client/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/test/jest-e2e.json -------------------------------------------------------------------------------- /microservice-client/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/tsconfig.build.json -------------------------------------------------------------------------------- /microservice-client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/tsconfig.json -------------------------------------------------------------------------------- /microservice-client/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservice-client/tslint.json -------------------------------------------------------------------------------- /microservices-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/README.md -------------------------------------------------------------------------------- /microservices-app/dist/app.controller.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/app.controller.d.ts -------------------------------------------------------------------------------- /microservices-app/dist/app.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/app.controller.js -------------------------------------------------------------------------------- /microservices-app/dist/app.controller.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/app.controller.js.map -------------------------------------------------------------------------------- /microservices-app/dist/app.module.d.ts: -------------------------------------------------------------------------------- 1 | export declare class AppModule { 2 | } 3 | -------------------------------------------------------------------------------- /microservices-app/dist/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/app.module.js -------------------------------------------------------------------------------- /microservices-app/dist/app.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/app.module.js.map -------------------------------------------------------------------------------- /microservices-app/dist/app.service.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/app.service.d.ts -------------------------------------------------------------------------------- /microservices-app/dist/app.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/app.service.js -------------------------------------------------------------------------------- /microservices-app/dist/app.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/app.service.js.map -------------------------------------------------------------------------------- /microservices-app/dist/main.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /microservices-app/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/main.js -------------------------------------------------------------------------------- /microservices-app/dist/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/main.js.map -------------------------------------------------------------------------------- /microservices-app/dist/tsconfig.build.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/dist/tsconfig.build.tsbuildinfo -------------------------------------------------------------------------------- /microservices-app/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/nest-cli.json -------------------------------------------------------------------------------- /microservices-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/package-lock.json -------------------------------------------------------------------------------- /microservices-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/package.json -------------------------------------------------------------------------------- /microservices-app/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/src/app.controller.spec.ts -------------------------------------------------------------------------------- /microservices-app/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/src/app.controller.ts -------------------------------------------------------------------------------- /microservices-app/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/src/app.module.ts -------------------------------------------------------------------------------- /microservices-app/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/src/app.service.ts -------------------------------------------------------------------------------- /microservices-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/src/main.ts -------------------------------------------------------------------------------- /microservices-app/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /microservices-app/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/test/jest-e2e.json -------------------------------------------------------------------------------- /microservices-app/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/tsconfig.build.json -------------------------------------------------------------------------------- /microservices-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/tsconfig.json -------------------------------------------------------------------------------- /microservices-app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rengthp/simple-nestjs-microservice/HEAD/microservices-app/tslint.json --------------------------------------------------------------------------------