Skip to content
#

publish-subscribe

The publish-subscribe pattern (short: pubsub) is an event handling and messaging pattern where the consumer subscribes to the provider, which in return can then publish a message that can be picked up and processed by each subscribed consumer.

Here are 23 public repositories matching this topic...

auth-service is a service to create a new user registration, login, token etc. We are using JWT to handle the token. This service will publish a message (rabbit event) after registering a new user. To publish the event, here is using Topic type, Exchange key and Routing key. So that, the consumer should consume the event/message with the exchang…

  • Updated Jun 3, 2022
  • TypeScript