Microservices & Messaging
gRPC, Kafka, RabbitMQ, NATS, event-driven, transports
4 articles
Real-time chat with WebSockets
With WebSockets, we can perform a two-way communication in real-time between the user and the server. Thanks to that, the browser can send messages to the…
Communicating with microservices using the gRPC framework
With NestJS, we have quite a few transport layer implementations prepared for microservices. Among them, the gRPC transporter is definitely one of the most…
Using RabbitMQ to communicate with microservices
NestJS subscribes to the idea that a microservice is an application that uses a different transport layer than HTTP. Therefore, in the previous part of this…
Exploring the idea of microservices
As our application grows, maintaining it might become more challenging. One of the approaches that we can take is to structure our app with microservices. You…