Crontab Expression Editor
Parse crontab expressions and preview next scheduled runs.
Overview
Most cron tools tell you whether an expression parses. The question people actually have is when will this fire, and whether it fires more often than they intended.
This editor reads each of the five fields back in words, then shows the next seven days as a heatmap of firings per hour. A job you meant to run nightly that lights up every hour is obvious at a glance — long before it fills your logs.
How to use
- Type an expression, or start from one of the presets.
- Read the five field cards — each shows the raw token, what it means, and how many values it matches.
- Check the heatmap. Each row is a day, each column an hour; brighter cells mean more firings in that hour.
- Read the exact next run times beside it, with how far away each one is. Click any row to copy the ISO 8601 timestamp.
- Switch the header between your zone and UTC to read the same schedule on the clock your server actually uses.
Examples
*/15 9-17 * * 1-5— every 15 minutes during office hours on weekdays. The heatmap shows a solid block Monday to Friday and empty weekends.0 3 * * *— 03:00 nightly. One lit cell per row.0 0 13 * 5— the trap: this fires on the 13th and every Friday, not only on Friday the 13th. The tool warns when both day fields are restricted.
Notes
Fields are minute, hour, day-of-month, month, day-of-week. Day-of-week accepts 0–7 where both 0 and 7 mean Sunday.
The preview searches forward up to two years. An expression that never fires in that window — 30 February, for instance — reports that rather than showing an empty list without explanation.