I have the following cron job that I need to execute everyday at 6 and 9AM.
cron.schedule('00 00 6,9 * * 0-6', function() {
alertAllMembersWithAppointments();//executed everyday at 6 and 9AM});
When I set the timing like this
cron.schedule('* * * * * *', function() {
alertAllMembersWithAppointments();//executed everyday at 6 and 9AM
});
it works fine and executes every minute. Please help to set the timing since it seems to me cron settings for node and linux are quite different. I am using the following requirement const cron = require("node-cron");