What is Cron Expression Generator?
Free cron expression generator and parser. Build cron schedules visually — select minute, hour, day, month, and weekday — get the cron string instantly. Shows next 5 run times in plain English. No signup.
Cron Generator runs entirely in your browser using JavaScript (browser). Your data never leaves your device.
Free Cron Expression Generator
Build cron expressions without memorizing the syntax. Use the visual field editors to set minute, hour, day of month, month, and day of week values. The cron string updates in real time. Paste any existing cron expression to parse it into human-readable text. Shows the next 5 scheduled run times so you can confirm the schedule is correct before deploying. Supports standard 5-field Unix cron and common presets.
Minute
Hour
Day (month)
Month
Day (week)
0 * * * *Every hour at minute 0
Next 5 scheduled runs
- 1.Sun, Apr 26, 2026, 11:00 PM
- 2.Mon, Apr 27, 2026, 12:00 AM
- 3.Mon, Apr 27, 2026, 01:00 AM
- 4.Mon, Apr 27, 2026, 02:00 AM
- 5.Mon, Apr 27, 2026, 03:00 AM
Parse existing cron expression
Frequently Asked Questions
You might also like
Browse all 17 Developer Tools tools →Regex Tester
Test and debug regular expressions with live match highlighting
JSON Formatter
Format, validate, and minify JSON instantly
UUID Generator
Generate UUIDs v1, v4 & v7 instantly in your browser
Understanding Cron Syntax
A cron expression consists of five fields separated by spaces, each defining a time unit: minute (0–59), hour (0–23), day of month (1–31), month (1–12), and day of week (0–7, where both 0 and 7 represent Sunday). Each field accepts a specific value, a comma-separated list of values, a range (start-end), or an asterisk (*) meaning "any". Step values (*/n) specify an interval — */15 in the minute field means every 15 minutes.
Cron in Cloud Platforms
Every major cloud platform and CI/CD system supports cron scheduling. GitHub Actions workflows use the on: schedule: cron: trigger, accepting standard 5-field expressions in UTC. AWS EventBridge (CloudWatch Events) uses a similar syntax with an optional 6th "year" field. Google Cloud Scheduler, Vercel cron jobs, and Railway scheduled tasks all use standard 5-field cron. Kubernetes CronJob resources accept the same 5-field format. This tool generates expressions compatible with all of these platforms. Always verify your schedule in UTC — most cloud schedulers run in UTC regardless of your local timezone.
Common Pitfalls
A frequent mistake is using both day-of-month and day-of-week restrictions in the same expression. On most Unix/cron implementations, specifying both uses OR logic — the job runs if either condition is satisfied. To run a job on the 15th of every month only if it falls on a weekday, you cannot use a single cron expression; you need a wrapper script that checks the day. Another pitfall is forgetting that cron runs in the server's local timezone (often UTC) while you're thinking in your local time — a job set to "9 AM" will run at 9 AM UTC, which may be 4 AM or 11 PM in your timezone. Always verify with the next-run preview.