Joebear receives an array of elements (any) and will let you process each element to which ever task is needed.
Joebear can
- Manage your jobs as a serial queue
- Call the next job in queue, when current is complete
- Reset current job in queue in case of an error
- Stop in any given time
- Follow current job in queue
- Give a cute summary when finished 🐻
Install npm install --save joebear
Examples source available in the examples directory.
/* Joebear simple example */
const Joebear = require('joebear');
const myJobs = new Joebear(['A','B','C',100]);
myJobs.on('err', (error) => {
console.log('Jobs Error: ', error);
});
myJobs.on('run', (currentJob, counter) => {
console.log('current job value: ', currentJob);
console.log('current job index (counter) value: ', counter);
const randomBool = Math.random() >= 0.5;
if (!randomBool) {
// simulate a failed job...
console.log('Job', currentJob, 'failed!');
myJobs.resetJob();
return;
}
console.log('Job',currentJob, 'success!');
myJobs.nextJob();
});
myJobs.on('finished', (jobsSummary) => {
console.log('Joebear finished, summary:', jobsSummary);
});
// start Joebear
myJobs.start();
A more complete example of a cron job that runs every 15 min which checks crypto coins values.
First argument must be array of elements.
Returns: EventEmitter
Array of your elements where each define a job
Start joebear
Stop joebear (force quit)
Main handler on current job
The callback function is responsible to process the job
Current element from the jobsArray
Current progress, current job iteration
Original jobsArray
for reference if needed
In case of a job being reseted you can pass data along and get it from this argument
Handler in case of error(s)
Handler when all jobs were processed OR stop()
was called to force quit.
Returned object with these properties:
time
- total time in seconds since joebearstart()
executedtotal
- number of total tasksdispatch
- number of total tasks that successfully processed
See examples folder for full usage reference.
MIT Licensed. Copyright (c) Arye Shalev 2019.