Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noblesamurai/node-simple-amqplib
Dead easy RabbitMQ consume/publish.
https://github.com/noblesamurai/node-simple-amqplib
Last synced: about 1 month ago
JSON representation
Dead easy RabbitMQ consume/publish.
- Host: GitHub
- URL: https://github.com/noblesamurai/node-simple-amqplib
- Owner: noblesamurai
- Created: 2013-12-03T05:54:45.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2021-07-13T03:00:13.000Z (over 3 years ago)
- Last Synced: 2024-11-11T22:15:22.672Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 126 KB
- Stars: 7
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
simple-amqplib
[![Build Status](https://secure.travis-ci.org/noblesamurai/node-simple-amqplib.svg?branch=master)](http://travis-ci.org/noblesamurai/node-simple-amqplib)
[![npm version](https://badge.fury.io/js/simple-amqplib.svg)](https://badge.fury.io/js/simple-amqplib)
----------------> Simple consuming and publishing from/to a RabbitMQ broker.
Declarative API to consume from a rabbitMQ queue and to perform publish operations.
- Auto queue declaration & binding
- Dead lettering support
- Easy publishing
- Simple promise based API# Example usage
```javascript
const AMQP = require('simple-amqplib');var config = {
url: process.env.AMQP_URL,
exchange: process.env.AMQP_EXCHANGE,
queue: {
name: process.env.AMQP_CONSUME,
routingKey: process.env.AMQP_ROUTING_KEY, // If supplied, queue is bound to
// this key (or keys) on the exchange. NB Can be an array of strings or just
// a string.
options: {/* ... */} // Advanced: options passed to ch.assertQueue() in wrapped `amqplib`.
},
// Set the QOS/prefetch (defaults to 1)
prefetch: 100
};const amqp = new AMQP(config);
async function main () {
// Must call this before you consume/publish/etc...
await amqp.connect();// Consuming
var handleMessage = function(message, callback) {
//... Do things
callback();
};
// You must call:
callback(err, requeue)
// in your handleMessage. If `err` !== `null` then the message will be `nack`ed.
// Requeueing will be requeue iff `requeue` is `true`.
// If `err` is `null` then the message is `ack`ed.
// If an exception occurs in handleMessage, then the message is `nack`ed and not requeued.// Start consuming:
amqp.consume(handleMessage);// Publishing to arbitrary routing key.
await amqp.publish(routingKey, payload, options);
}
```If `payload` is an object, it will be turned into JSON.
# Details
- You can specify a queue which will be declared (made to exist). This will be
the queue from which you will consume.
- If you specify a routing key for the queue, then a binding will be set up
(I.e. a mapping that tells AMQP to route message with that routing key to that
queue on the exchange you have specified).
- Any options you specify at the per-queue level are passed directly through to
ch.assertQueue in the underlying library. If you want to set up dead lettering,
for example, then pass the `deadLetterExchange` option which will cause the queue
to be declared with that dead letter exchange.
- `deadLetterExchange` and `deadLetterRoutingKey` are special options, in that
as well as being passed through to `ch.assertQueue()` to ensure the dead
lettering behaviour occurs, a queue will be declared of the same name with
the `-dead-letter` suffix, with a binding declared on the dead letter
exchange for the dead letter routing key. This means that when a message is dead
lettered on that queue it will have somewhere to go without you having to set up
a dead lettering queue manually.# Thanks to
This is a wrapper to https://github.com/squaremo/amqp.node (`amqplib`).# Tests
Start a rabbit server, preferably a 'throw away' one with fresh state. You can
do this like so if you have docker:
```bash
docker run -d --rm -p 5672:5672 rabbitmq
```
Wait for it to finish starting up, then:
```
npm test
```Note that `tests/config.js` currently assumes you are using `boot2docker` (on a
Mac) so you may need to hack that stuff (or it may just work as it should just
use localhost if it's not there... unproven though.)# API
## AMQPWrapper
Class to contain an instantiated connection/channel to AMQP with a given
config.**Kind**: global class
* [AMQPWrapper](#AMQPWrapper)
* [new AMQPWrapper(config)](#new_AMQPWrapper_new)
* [.connect()](#AMQPWrapper+connect) ⇒Promise
* [.close()](#AMQPWrapper+close) ⇒Promise
* [.publish(routingKey, message, options)](#AMQPWrapper+publish) ⇒Promise
* [.consume(handleMessage, options)](#AMQPWrapper+consume) ⇒Promise
### new AMQPWrapper(config)
Instantiate an AMQP wrapper with a given config.| Param | Type |
| --- | --- |
| config |object
|
| config.url |string
|
| config.exchange |string
|
| config.queue |object
|
| config.queue.name |string
|
| config.queue.routingKey |Array.<string>
\|string
|
| config.queue.options |object
|### amqpWrapper.connect() ⇒
Promise
Connects, establishes a channel, sets up exchange/queues/bindings/dead
lettering.**Kind**: instance method of [
AMQPWrapper
](#AMQPWrapper)### amqpWrapper.close() ⇒
Promise
Closes connection.**Kind**: instance method of [
AMQPWrapper
](#AMQPWrapper)### amqpWrapper.publish(routingKey, message, options) ⇒
Promise
Publish a message to the given routing key, with given options.**Kind**: instance method of [
AMQPWrapper
](#AMQPWrapper)| Param | Type |
| --- | --- |
| routingKey |string
|
| message |object
\|string
|
| options |object
|### amqpWrapper.consume(handleMessage, options) ⇒
Promise
handleMessage() is expected to be of the form:
handleMessage(parsedMessage, callback).
If callback is called with a non-null error, then the message will be
nacked. You can call it like:
callback(err, requeue) in order
to instruct rabbit whether to requeue the message
(or discard/dead letter).If not given, requeue is assumed to be false.
cf http://squaremo.github.io/amqp.node/doc/channel_api.html#toc_34
**Kind**: instance method of [
AMQPWrapper
](#AMQPWrapper)| Param | Type |
| --- | --- |
| handleMessage |function
|
| options |object
|## Contributing
### Prerequisites
```
$ pip install pre-commit
```### Installation
```
$ pre-commit install --install-hooks
```# License
(The MIT License)
Copyright (c) 2014 Noble Samurai
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.