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
- Host: GitHub
- URL: https://github.com/arjun-r34/rabbitmq
- Owner: ARJUN-R34
- License: mit
- Created: 2022-11-02T09:47:46.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-02T11:00:12.000Z (over 3 years ago)
- Last Synced: 2025-01-30T19:48:10.005Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.