Created
November 19, 2022 19:08
-
-
Save spac3unit/8cc9719027f4b0ce003e8a0776f40a7b to your computer and use it in GitHub Desktop.
Cron helper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const Every = { | |
second: "* * * * * *", | |
minute: "* * * * *", | |
minutes15: "*/15 * * * *", | |
halfHour: "*/30 * * * *", | |
hour: "0 * * * *", | |
twelveHours: "0 */12 * * *", | |
day: "0 0 * * *", //At 00:00 | |
weekDay: "0 0 * * 1-5", //Monday to Friday. | |
weekend: "0 0 * * 6,0", //Saturday and Sunday | |
week: "0 0 * * 0", | |
month: "0 0 1 * *", | |
otherMonth: "0 0 1 */2 *", | |
quarter: "0 0 1 */3 *", | |
sixMonth: "0 0 1 */6 *", | |
year: "0 0 1 1 *" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment