How to do any task every week in node-schedule?

1.1k Views Asked by At

I'm using node-schedule package and I need some help. Can I do any task start of each week?

1

There are 1 best solutions below

0
On

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.”

https://crontab.guru/