Skip to content

Instantly share code, notes, and snippets.

@andrewjmead
Last active February 2, 2016 13:25
Show Gist options
  • Select an option

  • Save andrewjmead/20fed43c1611c1afac81 to your computer and use it in GitHub Desktop.

Select an option

Save andrewjmead/20fed43c1611c1afac81 to your computer and use it in GitHub Desktop.
Cron Job Midnight
var CronJob = require('cron').CronJob;
var job = new CronJob({
cronTime: '00 00 00 * * *',
onTick: function() {
/*
* Run a 12:00am every night
*/
},
start: false
});
job.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment