node-cron / node-cron

A simple cron-like job scheduler for Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

get list of scheduled jobs

ronytesler opened this issue · comments

commented

How can I see all currently scheduled cron jobs?

You can use getTasks() function:

import cron from "node-cron";
console.log(cron.getTasks());
commented

It should only show tasks scheduled from the running process?