https://github.com/shimisnow/poc-nestjs
Implements an authentication REST API using NestJS. Tests with Jest, Supertest and Testcontainers. CI/CD with GitHub Actions to automate testing and deployment process
https://github.com/shimisnow/poc-nestjs
docker github-actions jest jwt-authentication nestjs nx supertest testcontainers typeorm webpack
Last synced: 3 months ago
JSON representation
Implements an authentication REST API using NestJS. Tests with Jest, Supertest and Testcontainers. CI/CD with GitHub Actions to automate testing and deployment process
- Host: GitHub
- URL: https://github.com/shimisnow/poc-nestjs
- Owner: shimisnow
- Created: 2023-05-11T19:50:03.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-26T12:34:13.000Z (11 months ago)
- Last Synced: 2025-10-05T12:58:47.586Z (9 months ago)
- Topics: docker, github-actions, jest, jwt-authentication, nestjs, nx, supertest, testcontainers, typeorm, webpack
- Language: TypeScript
- Homepage:
- Size: 2.95 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README

# Authentication API with NestJS
[](https://github.com/shimisnow/poc-nestjs/actions/workflows/lint-test.yml)
[](https://github.com/shimisnow/poc-nestjs/actions/workflows/e2e-test.yml)
[](https://github.com/shimisnow/poc-nestjs/actions/workflows/deploy.yml)
[](https://hub.docker.com/r/shimisnow/pocnestjs-auth-service)
[](https://hub.docker.com/r/shimisnow/pocnestjs-financial-service)
## Project Overview
This project is a robust authentication REST API built using the NestJS framework. Key features include a modular, testable architecture; comprehensive unit and integration testing with Jest; end-to-end testing using Supertest and Testcontainers for application stack testing; and an integrated CI/CD pipeline with GitHub Actions to automate testing and deployment process.
## Key features
- Shows [how to authenticate, issue and invalidate JWT tokens](docs/markdown//resolved-problems/authentication-flow.md) using Redis cache and without storing tokens in database
- Shows how to E2E test using [Testcontainers](https://testcontainers.com/) to create isolated environments for testing the entire application flow from the api consumer perspective
- Shows how to make automated deployment to [Docker Hub](https://hub.docker.com/) using [multi-stage builds](https://docs.docker.com/build/building/multi-stage/) and [Github Actions](https://github.com/features/actions)
- Shows [how to retrieve the account balance in a financial application](docs/markdown/resolved-problems/account-balance.md).This service exists to apply the authentication in a more real scenario
## Tech Stack
- Code organization: monorepo with [Nx](https://nx.dev/)
- Backend: [NestJS Framework](https://docs.nestjs.com/), TypeScript, Node.js, REST API
- Database and cache: PostgreSQL, Redis, [TypeORM](https://typeorm.io/)
- Security: [JWT](https://jwt.io/)
- Service-to-service communication with Axios
- Tests: Unit and integration testing ([Jest](https://jestjs.io/)), E2E Testing ([SuperTest](https://github.com/ladjs/supertest) and [Testcontainers](https://testcontainers.com/)), Code coverage ([IstanbulJS](https://istanbul.js.org/))
- CI/CD: [GitHub Actions](https://github.com/features/actions), [Docker Hub](https://hub.docker.com/u/shimisnow)
- Documentation: [OpenAPI/Swagger](https://www.openapis.org/), [Postman](https://www.postman.com/) collections, [Compodoc](https://compodoc.app/), [Mermaid (diagram-as-code)](https://mermaid.js.org/)
- Others: Docker ([with multi-stage build](https://docs.docker.com/build/building/multi-stage/)), [Husky](https://typicode.github.io/husky/), ESLint, Webpack, [winston](https://github.com/winstonjs/winston)
## General organization
This project has two individual services:
- Auth Service: implements an authentication process with JWT tokens
- Financial Service: process and store financial data (used to demonstrate the authentication)
```mermaid
stateDiagram-v2
direction LR
state "Auth Consumer" as auth_consumer_group {
state "API request" as auth_consumer_api_call
[*] --> auth_consumer_api_call
}
state "Financial Consumer" as financial_consumer_group {
state "API request" as financial_consumer_api_call
[*] --> financial_consumer_api_call
}
state "Services" as service {
state "Auth Service REST API" as auth
state "Financial Service REST API" as financial
}
auth_consumer_api_call --> auth: login or refresh token
auth --> auth_consumer_api_call: access token
financial_consumer_api_call --> financial: request + access token
financial --> financial_consumer_api_call: financial data
state "Infrastructure" as storage {
state "Auth Database" as auth_db
state "Cache" as cache
state "Financial Database" as financial_db
}
auth --> auth_db
auth --> cache
financial --> cache
financial --> financial_db
```
## DevOps flow
1. Development: lint, unit and integration tests (Jest), adds a coverage report as github pull request comment
2. Staging: E2E test (Supertest) using [Testcontainers](https://testcontainers.com/) to replicate external dependencies
3. Production: build all services, create Docker images, and deploy them to Docker Hub
```mermaid
stateDiagram-v2
direction LR
classDef dev_style fill:#7f51ce
classDef staging_style fill:#e3942a
classDef prod_style fill:green
state "Development" as development_stage
[*] --> development_stage
state "GitHub Actions • Development" as github_dev_stage {
state "Lint code" as lint
state "Unit test" as unit
state "Integration test" as integration
state "Coverage report" as coverage
[*] --> lint
lint --> unit
unit --> integration
integration --> coverage
coverage --> [*]
}
github_dev_stage:::dev_style
development_stage --> github_dev_stage
state "Staging" as staging_stage
github_dev_stage --> staging_stage
state "GitHub Actions • Staging" as github_staging_stage {
state "Setup Testcontainers" as testcontainers
state "e2e Tests" as e2e_tests
[*] --> testcontainers
testcontainers --> e2e_tests
e2e_tests --> [*]
}
github_staging_stage:::staging_style
staging_stage --> github_staging_stage
state "Production" as prod_stage
github_staging_stage --> prod_stage
state "GitHub Actions • Production" as github_prod_stage {
state "Build code" as build_code
state "Create Docker images" as docker_images
state "Deploy do DockerHub" as docker_hub
[*] --> build_code
build_code --> docker_images
docker_images --> docker_hub
docker_hub --> [*]
}
github_prod_stage:::prod_style
prod_stage --> github_prod_stage
github_prod_stage --> [*]
```
## Documentation
- [How to contribute](./CONTRIBUTING.md)
- [How to run from code](docs/markdown/how-to-run.md)
- [How to run with Docker](docs/markdown/how-to-deploy.md)
- [Database structure, TypeORM entities, and migrations](docs/markdown/database-structure.md)
- [GitHub Actions](docs/markdown/github-actions.md)
- [Documentation](docs/markdown/documentation.md)
- [Testing](docs/markdown/testing.md)