Skip to content

Instantly share code, notes, and snippets.

@robwormald
Created March 3, 2014 03:42
Show Gist options
  • Save robwormald/9318031 to your computer and use it in GitHub Desktop.
Save robwormald/9318031 to your computer and use it in GitHub Desktop.
var cronJob = require('cron').CronJob;
module.exports.debug = function(socketId,start){
new cronJob('*/30 * * * * *', function(){
sails.sockets.emit(socketId,'debug',{time : new Date()})
}, null, true, "America/Los_Angeles");
start()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment