A practical and imaginary microservices for implementing an infrastructure for up and running distributed system with the latest technology and architecture like Vertical Slice Architecture, Event Driven Architecture, CQRS, Postgres, RabbitMQ and Nestjs. π
π‘ This project is not business-oriented and most of my focus was in the thechnical part for implement a distributed system with a sample project. In this project I implemented some concept in microservices like Messaging, Tracing, Event Driven Architecture, Vertical Slice Architecture, CQRS.
You can find Expressjs
ported of this project in this link:
π booking-microservices-expressjs
- The Goals of This Project
- Plan
- Technologies - Libraries
- The Domain and Bounded Context - Service Boundary
- Structure of Project
- How to Use Migrations
- How to Run
- Documentation Apis
- Support
- Contribution
- βοΈ Using
Vertical Slice Architecture
forarchitecture
level. - βοΈ Using
Data Centric
Architecture based on CRUD in all Services. - βοΈ Using
Rabbitmq
on top ofamqp
forEvent Driven Architecture
between our microservices. - βοΈ Using
Rest
forinternal communication
between our microservices withaxios
. - βοΈ Using
Nestjs
forweb framework
. - βοΈ Using
Nestjs CQRS
for implementation of command and query withCommandBus
andQueryBus
. - βοΈ Using
Nestjs Typeorm
for database level withpostgres
. - βοΈ Using
Nestjs Dependency Injection
for handlingdependency injection
. - βοΈ Using
Nestjs Passport
forauthentication
andauthorization
, base onJWT
. - βοΈ Using
Nestjs Swagger
for generateapi documentation
automatically. - βοΈ Using
Nestjs Logger
forlogging
. - βοΈ Using
OpenTelemetry
for distributed tracing top ofJaeger
andZipkin
. - βοΈ Using
OpenTelemetry
for monitoring top ofPrometteuse
andGrafana
. - βοΈ Using
Joi
forvalidation
input in our handlers and endpoints. - βοΈ Using
dotenv
forconfiguration
management. - βοΈ Using
Unit Testing
for testingsmall units
andmocking
our dependencies withJest
. - βοΈ Using
End-To-End Testing
andIntegration Testing
for testingfeatures
with all dependencies usingtestcontainers
. - βοΈ Using
ts-mapper
formapping
our objects. - βοΈ Using
Problem Details
standard forreadable details of errors
. - βοΈ Using
eslint
andprettier
forformatting
of our code. - βοΈ Using
Docker-Compose
for ourdeployment
mechanism. - π§ Using
Nestjs MongoDB
for read side withmongoose
. - π§ Using
Domain Driven Design
(DDD) to implement allbusiness
processes in microservices. - π§ Using
Inbox Pattern
for ensuring message idempotency for receiver andExactly once Delivery
. - π§ Using
Outbox Pattern
for ensuring no message is lost and there is atAt Least One Delivery
.
πThis project is a work in progress, new features will be added over time.π
I will try to register future goals and additions in the Issues section of this repository.
High-level plan is represented in the table
Feature | Status |
---|---|
Identity Service | Completed βοΈ |
Flight Service | Completed βοΈ |
Passenger Service | Completed βοΈ |
Booking Service | Completed βοΈ |
Building Blocks | Completed βοΈ |
- βοΈ
microsoft/TypeScript
- TypeScript is a language for application-scale JavaScript. - βοΈ
nestjs/nest
- Nest is a framework for building efficient, scalable Node.js server-side applications - βοΈ
nestjs/cqrs
- A lightweight CQRS module for Nest framework (node.js) - βοΈ
nestjs/typeorm
- TypeORM module for Nest - βοΈ
nestjs/swagger
- OpenAPI (Swagger) module for Nest - βοΈ
nestjs/passport
- Passport utilities module for Nest - βοΈ
amqp-node/amqplib
- A library for making AMQP 0-9-1 clients for Node.JS - βοΈ
open-telemetry/opentelemetry-js
- A framework for collecting traces, metrics, and logs from applications - βοΈ
siimon/prom-client
- A prometheus client for Node.js that supports histogram, summaries, gauges and counters - βοΈ
axios/axios
- Promise based HTTP client for the browser and node.js - βοΈ
motdotla/dotenv
- Dotenv is a zero-dependency module that loads environment variables from a .env - βοΈ
PDMLab/http-problem-details
- This library implements HTTP Problem details (RFC 7807) for HTTP APIs - βοΈ
hapijs/joi
- The most powerful schema description language and data validator for JavaScript - βοΈ
jestjs/jest
- A javascript framework for testing - βοΈ
testcontainers/testcontainers-node
- A library to support tests with throwaway instances of Docker containers - βοΈ
faker-js/faker
- Generate massive amounts of fake (but realistic) data for testing and development - βοΈ
florinn/typemoq
- Simple mocking library for JavaScript targeting TypeScript development - βοΈ
ladjs/supertest
- High-level abstraction for testing HTTP - βοΈ
eslint/eslint
- ESLint is a tool for identifying and reporting on patterns found in ECMAScript/JavaScript code - βοΈ
prettier/prettier
- Opinionated Code Formatter - βοΈ
vercel/async-retry
- Retrying made simple, easy, and async - βοΈ
MarluanEspiritusanto/ts-mapper
- A mapper for mapping one object to another
-
Identity Service
: The Identity Service is a bounded context for the authentication and authorization of users using passport. This service is responsible for creating new users and their corresponding roles and permissions using Jwt for authentication and authorization. -
Flight Service
: The Flight Service is a bounded contextCRUD
service to handle flight related operations. -
Passenger Service
: The Passenger Service is a bounded context for managing passenger information, tracking activities and subscribing to get notification for out of stock products. -
Booking Service
: The Booking Service is a bounded context for managing all operation related to booking ticket.
In this project I used a mix of clean architecture, vertical slice architecture and I used feature folder structure to structure my files.
Each microservice has its dependencies such as databases, files etc. Each microservice is decoupled from other microservices and developed and deployed separately. Microservices talk to each other with Rest or gRPC for synchronous calls and use RabbitMq or Kafka for asynchronous calls.
We have a separate microservice Identity
for authentication and authorization of each request. Once signed-in users are issued a JWT token. This token is used by other microservices to validate the user, read claims and allow access to authorized/role specific endpoints.
I used RabbitMQ as my MessageBroker for async communication between microservices using the eventual consistency mechanism. Each microservice uses amqp to interface with RabbitMQ providing, messaging, availability, reliability, etc.
Microservices are event based
which means they can publish and/or subscribe to any events occurring in the setup. By using this approach for communicating between services, each microservice does not need to know about the other services or handle errors occurred in other microservices.
I treat each request as a distinct use case or slice, encapsulating and grouping all concerns from front-end to back.
When adding or changing a feature in an application in n-tire architecture, we are typically touching many "layers" in an application. We are changing the user interface, adding fields to models, modifying validation, and so on. Instead of coupling across a layer, we couple vertically along a slice. We minimize coupling
between slices
, and maximize coupling
in a slice
.
With this approach, each of our vertical slices can decide for itself how to best fulfill the request. New features only add code, we're not changing shared code and worrying about side effects.
Instead of grouping related action methods in one controller, as found in traditional ASP.net controllers, I used the REPR pattern. Each action gets its own small endpoint, consisting of a route, the action, and an IMediator
instance (see MediatR). The request is passed to the IMediator
instance, routed through a Mediatr pipeline
where custom middleware can log, validate and intercept requests. The request is then handled by a request specific IRequestHandler
which performs business logic before returning the result.
The use of the mediator pattern in my controllers creates clean and thin controllers. By separating action logic into individual handlers we support the Single Responsibility Principle and Don't Repeat Yourself principles, this is because traditional controllers tend to become bloated with large action methods and several injected Services
only being used by a few methods.
I used CQRS to decompose my features into small parts that makes our application:
- Maximize performance, scalability and simplicity.
- Easy to maintain and add features to. Changes only affect one command or query, avoiding breaking changes or creating side effects.
- It gives us better separation of concerns and cross-cutting concern (with help of mediatr behavior pipelines), instead of bloated service classes doing many things.
Using the CQRS pattern, we cut each business functionality into vertical slices, for each of these slices we group classes (see technical folders structure) specific to that feature together (command, handlers, infrastructure, repository, controllers, etc). In our CQRS pattern each command/query handler is a separate slice. This is where you can reduce coupling between layers. Each handler can be a separated code unit, even copy/pasted. Thanks to that, we can tune down the specific method to not follow general conventions (e.g. use custom SQL query or even different storage). In a traditional layered architecture, when we change the core generic mechanism in one layer, it can impact all methods.
Note: For easy using of migrations commands in typeorm, I add some scripts in
package.json
and base on these scripts we can use below commands to generate and run migrations easily.
For generating
a new migration use this command in the root of each microservice:
npm run migration:generate -- src/data/migrations/new-migration-name
Also for running
migration use this command in the root of each microservice:
npm run migration:run
Use the command below to run our infrastructure
with docker
using the infrastructure.yaml file at the root
of the app:
docker-compose -f ./deployments/docker-compose/infrastructure.yaml up -d
I will add docker-compsoe
for up and running whole app here in the next...
To build
each microservice, run this command in the root directory of each microservice where the package.json
file is located:
npm run build
To run
each microservice, run this command in the root of the microservice where package.json
is located:
npm run dev
To test
each microservice, run this command in the root directory of the microservice where the package.json
file is located:
npm test
Each microservice has a Swagger OpenAPI
. Browse to /swagger
for a list of endpoints.
As part of API testing, I created the booking.rest file which can be run with the REST Client VSCode plugin
.
If you like my work, feel free to:
- β this repository. And we will be happy together :)
Thanks a bunch for supporting me!
Thanks to all contributors, you're awesome and this wouldn't be possible without you! The goal is to build a categorized, community-driven collection of very well-known resources.
Please follow this contribution guideline to submit a pull request or create the issue.
This project is made available under the MIT license. See LICENSE for details.