Skip to content

Instantly share code, notes, and snippets.

@jkantr
Created January 31, 2017 22:11
Show Gist options
  • Save jkantr/bd1a31d7c9f0243a07c0b5849876e442 to your computer and use it in GitHub Desktop.
Save jkantr/bd1a31d7c9f0243a07c0b5849876e442 to your computer and use it in GitHub Desktop.
const CronJob = require('cron').CronJob
// run once a day at midnight (0 minute of 0 hour, every day/week/month)
new CronJob('0 0 * * *', () => {
getAllStudents.clear()
}, null, true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment