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

https://github.com/lightsofapollo/ironmq-promise

IronMQ (iron_mq) promise wrapper
https://github.com/lightsofapollo/ironmq-promise

Last synced: 10 months ago
JSON representation

IronMQ (iron_mq) promise wrapper

Awesome Lists containing this project

README

          

# ironmq-promise

IronMQ (iron_mq) promise wrapper.

## Usage

```js
var IronMQ = require('ironmq-promise');
var queue = new IronMQ({ queue_name: 'xfoo' });

queue.get({ n: 20 }).then(
function (messages) {
}
);
```