To guard against restarts you need to create a persistent data stored job.
Something like :
Job = {
_id: Number,
job: String,
dueDate: Date,
completed: Boolean
}
Then have some code as follows:
var createJob = function(url, date) {
var j = db.create(Job, function(j) {
j.job = url;
j.dueDate = date;
j.save();
});
};
var runJob = function(j) {
var id = j._id;
setInterval(j.dueDate - Date.now(), function() {
db.getOne(Job, { _id : id }, function(j) {
require(j.job);
j.finished = true;
j.save();
});
});
j = null;
};
On start up you just have to do something like :
db.get(Job, { finished: false }, function(jobs) {
jobs.forEach(runJob);
});
Replace the generic db with MongoDB, CouchDB, Redis, etc.
node-cronIS NOT based on crontables. – chester1000 Apr 25 at 10:04