Skip to content

Instantly share code, notes, and snippets.

@sangheestyle
Last active March 29, 2019 15:50
Show Gist options
  • Save sangheestyle/11c1607524f065383b7a80226985e7b2 to your computer and use it in GitHub Desktop.
Save sangheestyle/11c1607524f065383b7a80226985e7b2 to your computer and use it in GitHub Desktop.
rabbit

Using RabbitMQ

Running RabbitMQ on your local

Run the following script.

$ docker run -d --hostname my-rabbit --name some-rabbit -p 15672:15672 -p 5672:5672 rabbitmq:3-management

Open the following link on your browser.

http://localhost:15672/#/

Use guest for accout and password and check dashboard.

Execute some examples

Do the following:

git clone https://github.com/rabbitmq/rabbitmq-tutorials
cd rabbitmq-tutorials/javascript-nodejs
npm ci

Check README.md

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment