Cron in Node.js

In-process schedulers die with the process. Fine for one long-lived server, not for serverless. Below, every schedule with a Node.js example you can paste.

import cron from 'node-cron';

cron.schedule('*/5 * * * *', async () => {
  await runReport();
}, { timezone: 'UTC' });