·data
Cron Builder
Write a cron expression, get a human-readable description + next 5 runs + interactive field builder. Sanity-check yourself when wiring QStash / GitHub Actions / Kubernetes CronJobs.
cron · scheduling · qstash
Write a cron expression, get a human-readable description + next 5 runs + interactive field builder. Sanity-check yourself when wiring QStash / GitHub Actions / Kubernetes CronJobs.
cron · scheduling · qstash
Is 0 9 * * 1-5 "Mon-Fri at 09:00 UTC" or "9 minutes past every hour"? Cron syntax is confusing. This lab parses the expression, lists the next 5 runs in your timezone, and explains each field.
at minute 0, hour 9, on Mon–Fri
| Expression | Meaning |
|---|---|
* * * * * | every minute |
*/5 * * * * | every 5 minutes |
0 * * * * | top of every hour |
0 9 * * * | daily at 09:00 |
0 9 * * 1-5 | weekdays at 09:00 |
0 0 1 * * | midnight on the 1st of every month |
30 4 * * 0 | Sunday 04:30 (weekly cleanup) |
@reboot, @daily, @hourly macros exist in some implementations, not universal