I'm using node-schedule package and I need some help. Can I do any task start of each week?
Asked
Active
Viewed 763 times
1 Answers
0
The node-schedule packages uses the crontab syntax. In order to run once a week you can do:
1 1 * * 1 “At 01:01 on Monday.”

Shimon Tolts
- 1,602
- 14
- 15