Your IP : 216.73.216.52


Current Path : /proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/cron/examples/
Upload File :
Current File : //proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/cron/examples/basic.js

const CronJob = require('../lib/cron.js').CronJob;

console.log('Before job instantiation');
const job = new CronJob('* * * * * *', function() {
	const d = new Date();
	console.log('Every second:', d);
});
console.log('After job instantiation');
job.start();