I want to run cron job daily at midnight. For this I am using
0 0 0 1-31 * *
but it doesn\'t work for me. I am using the node cron. Plea
It's quite simple....
The below is the code to run crone job every day 12 AM..
var job = new CronJob('0 0 0 * * *', function() { //will run every day at 12:00 AM })
For more https://www.npmjs.com/package/cron