Files
planilla/worker/server.js
josedario87 745168cf51
Some checks failed
build-and-push / deploy (push) Has been skipped
build-and-push / build (push) Failing after 6s
sistema creado v0.5.0
2025-05-14 16:10:41 -06:00

9 lines
191 B
JavaScript

//cron-worker.js just prints the current date and time every 5 seconds
import cron from 'node-cron';
cron.schedule('*/5 * * * * *', () => {
console.log(new Date().toLocaleString());
});