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
- Host: GitHub
- URL: https://github.com/lightsofapollo/ironmq-promise
- Owner: lightsofapollo
- Created: 2014-02-11T22:07:13.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-11T22:18:19.000Z (over 12 years ago)
- Last Synced: 2025-06-30T00:42:12.527Z (12 months ago)
- Language: JavaScript
- Size: 1.08 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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) {
}
);
```