In my application i will have to schedule multiple cron task and the application should be run "forever" (in few words, have to stop just only when i kill it).
Express framework use something like app.listen
that run indefinitely.
How i can do something like this? My wait will not be "active", because all cron must continue to work.
I cant use (i think) something like setInterval
. I've tried to search a lot but i havent find anytning like this.
Thanks