Build, validate, and understand cron expressions with an intuitive visual interface. No more guessing cron syntax.
| Expression | Description |
|---|
Intuitive dropdown-based interface for each cron field. Select from presets or configure custom values without memorizing syntax.
Instantly see a plain-English description of what your cron expression does. Never deploy a schedule you don't understand.
Calculates the next 10 run times for your expression. Verify your schedule behaves exactly as expected before deploying.
One-click validation catches syntax errors and impossible dates. Copy the validated expression straight to your crontab.
* (any), , (list), - (range), and / (step) give you precise control over timing.*), the job runs when either condition is met — they are ORed, not ANDed. Use * for the field you don't want to constrain./ syntax. */5 in the minute field means "every 5 minutes" (0, 5, 10, 15…). 10-30/5 means "every 5 minutes from 10 through 30" (10, 15, 20, 25, 30). You can combine ranges and steps for fine-grained control.