Skip to content

Instantly share code, notes, and snippets.

@kuno
Created October 10, 2012 09:27
Show Gist options
  • Save kuno/3864345 to your computer and use it in GitHub Desktop.
Save kuno/3864345 to your computer and use it in GitHub Desktop.
kue worker
var kue = require('kue');
var jobs = kue.createQueue();
job.process('email', function(job done) {
console.log(job.data);
done.call(this);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment