You can set a function to handle the unfinished jobs now:
// Global Settings
var urlExtract = require('url-extract')({
unfinish: function (jobs) {
// when worker died, this function will callback
// you can push them to jobPool: jobs.push()
// or you can unshift them to jobPool: jobs.unshift()
}
});