Does node-schedule npm module spwan/fork new process or we have to do it ourself ?
var cron = require('node-schedule');
var cronExpress="0 * * * *";
cron.scheduleJob(cronExpress, () => {
//logger.info("Cron expression Rule "+Date());
doSomething();
});
Using the above piece of code will run the job on the same instance or spawn another process i.e node-schedule handles this?