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
- Host: GitHub
- URL: https://github.com/settinghead/kue-meteor
- Owner: settinghead
- Created: 2014-01-18T07:54:32.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-20T18:10:06.000Z (about 12 years ago)
- Last Synced: 2025-03-25T19:40:20.324Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 245 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```