hapi-rabbit icon indicating copy to clipboard operation
hapi-rabbit copied to clipboard

rabbitMQ hapijs plugin

Results 4 hapi-rabbit issues
Sort by recently updated
recently updated
newest added

### Overview If you are not aware yet, Hapi v17 is making the transition from callbacks to `async`/`await`, as well as deprecating some other rarely used functionality. This is a...

messageType in rabbit.publish function should allow special characters like ".", "*", "#" in order to respect rabbit topic routing_key format . [RabbitMq Topic](https://www.rabbitmq.com/tutorials/tutorial-five-javascript.html). Your plugin instead allow only alphanumeric characters.

This may be a dumb question but I'm not sure I understand what you get by making this a plugin versus just using a native RabbitMQ module? I'd really appreciate...

Nice work! But ran into an error when subscribed data is received from RabbitMQ. I got if fixed by changing _JSON.parse(message)_ to _JSON.parse(message)_ **hapi-rabbit/lib/index.js** ``` sub.on('data', function (message) { //...