I want execute a function at 20 November 2017 at 15:53 with node-cron so I do this:
var task = cron.schedule('00 53 15 20 11 *', function() {
console.log("HELLO");
}, false);
task.start();
The task is not execute because I think that I'm wronging put the date so I don't read the "HELLO" print. Anyone can help?