A progressive Node.js framework for building efficient and scalable server-side applications, heavily inspired by Angular.
nestMailer is simple APP for education purpose based on Nest framework. It has:
- REST API with CRUD operations and JWT auth behavior to manage user and mail entities
- typeORM for Postgres DB with tables/entities relations functionality
- 2 microservices. 1st ms is core GW and 2nd is a mail fetcher
- ☑ docker containers for PG DB and PG admin web console
- ☑ CRUD users entities
- ☑ CRUD mail entities
- ☑ AUTH users by JWT
- ☑ custom middleware, AuthGuard, validation pipes, ExceptionFilter, RTT LoggerInterceptor
- ☑ TypeORM entities relations
- ☑ init mail fetcher microservice
- ☑ RPC between microservices
- ☐ mail fetcher behavior
- ☐ GMAIL google API pub/sub message handler
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Nest is MIT licensed.