Originally this projet was a NodeJS fork of James Padolsey's cron.js.
After Craig Condon made some updates and changes to the code base this has evolved to something that has a bit of both. The cron syntax parsing is mostly James' while using timeout instead of interval is Craig's.
Additionally, this library goes beyond the basic cron syntax and allows you to supply a Date object. This will be used as the trigger for your callback. Cron syntax is still an acceptable CronTime format.
var cronJob = require("cron").CronJob;
cronJob("* * * * * *", function(){
console.log("You will see this message every second");
});
Asterisk. E.g. *
Ranges. E.g. 1-3,5
Steps. E.g. */2
Read up on cron patterns here.
var cronJob = require("cron").CronJob;
cronJob("00 30 11 * * 2-6", function(){
// Runs every weekday (Monday through Friday)
// at 11:30:00 AM. It does not run on Saturday
// or Sunday.
});
try {
cronJob("invalid cron pattern", function() {
console.log("this should not be printed");
})
}
catch (ex) {
console.log("cron pattern not valid");
}
From source: `npm install`
From npm: `npm install cron`
MIT
