An open API service indexing awesome lists of open source software.

https://github.com/arjun-r34/rabbitmq

A PoC to demonstrate queuing systems using RabbitMQ
https://github.com/arjun-r34/rabbitmq

Last synced: about 1 year ago
JSON representation

A PoC to demonstrate queuing systems using RabbitMQ

Awesome Lists containing this project

README

          

# RabbitMQ PoC

### This is a PoC to demonstrate the working of queuing mechanism through publisher-consumer method using RabbitMQ.


#### How to use

Once this repo is cloned, install the dependencies

```sh
npm ci
```

Run the consumer

```sh
node consumer.js
```

Put messages in the queue using the producer

```sh
node publisher.js 'Hello World'
```

The hello world message will be picked up by the consumer and logged into the console.