cowork
v0.2.2
Published
job queue backed by AWS
Downloads
6
Readme
cowork
distributed job queue backed by AWS
Getting Started
Install the module with: npm install cowork
var cowork = require('cowork');
var worker = function (job, callback) {
console.log('process job', job);
return callback();
};
var jobs = cowork.createQueue(worker, settings);
jobs.push({foo: 'bar'});
jobs.process();
Documentation
(Coming soon)
Examples
See examples folder
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Release History
(Nothing yet)
License
Copyright (c) 2013 Ryan Fitzgerald Licensed under the MIT license.