I am using node-cron to schedule some tasks inside my node app. This package has some API to create, start and stop cron jobs. However, I can't seem to find these cron jobs when I run crontab -l
command in my OS terminal. I tried both on my mac os as well as on centos.
Specific question:
- Does such node packages create cron jobs at the OS level?
- If answer to 1 is yes, then will these cron jobs execute irregardless my node app is running or not?
- If answer to 2 is yes, then how do I stop and clear out all such schedules cron jobs?