Node js + mongodb + schedules

I am new to nodejs, I am trying to develop a calendar application with nodejs and mondodb where users can schedule events (appointments, notifications, etc.). Events can be repeated over time (every 8 hours, three months, ...), and I want to notify users before the event.

Can anyone help with this? Is there any module to manage this?

thanks

+4
source share
1 answer

I am using this Node.js module for scheduling tasks ...

https://github.com/mattpat/node-schedule

+2
source

Source: https://habr.com/ru/post/1524666/


All Articles