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

https://github.com/settinghead/kue-meteor

[DEPRECATED: use NPM package directly] Meteorite package for kue
https://github.com/settinghead/kue-meteor

Last synced: about 1 year ago
JSON representation

[DEPRECATED: use NPM package directly] Meteorite package for kue

Awesome Lists containing this project

README

          

#Meteor Wrapper for Kue
----------------------------------------------
##What?
Meteorite wrapper for [Kue](http://learnboost.github.io/kue/), the Node.js job queue package.
## Usage
Install with the following command:
```bash
mrt add kue
```
The global variable ```Kue``` is available to use anywhere in the code. For example, to create a job queue, use the following command:
```javascript
var jobs = Kue.createQueue();
```
Alternatively, use
```javascript
var jobs = Npm.require('kue').createQueue();
```