Skip to content

Instantly share code, notes, and snippets.

@endeepak
Last active July 8, 2019 16:17
Show Gist options
  • Save endeepak/eb1f374cc9498abf56d7248f6a80afbc to your computer and use it in GitHub Desktop.
Save endeepak/eb1f374cc9498abf56d7248f6a80afbc to your computer and use it in GitHub Desktop.
NodeJS scheduled task skeleton
var schedule = require('node-schedule');
schedule.scheduleJob('30 * * * *', function(){
doTheJob();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment