node-cron
node-cron copied to clipboard
get list of scheduled jobs
How can I see all currently scheduled cron jobs?
You can use getTasks() function:
import cron from "node-cron";
console.log(cron.getTasks());
It should only show tasks scheduled from the running process?