I'm using https://www.npmjs.com/package/cron version is ^1.7.2. Normally it scheduled at 10:40 PM everyday and it works well on that part. The problem that i want to solve is when i run my code by using node app.js
it run main()
function first then it wait for scheduled time. I want to cancel automatically running on start. Here is my code below,
CronJob('22 40 * * *', main(), null, true, 'Europe/Istanbul');