Aarunya AppsAarunya Apps

How it works

  1. 1

    Build or paste a cron expression

    Use the visual field builder to set minute, hour, day-of-month, month, and day-of-week. Choose Any, Every N, Specific values, or Range for each field. Or pick a preset to start from a common schedule.

  2. 2

    See the human-readable explanation

    Every change to the builder immediately updates the plain-English description and the next 8 scheduled run times in your local timezone.

  3. 3

    Copy a platform snippet

    Pick your deployment target — GitHub Actions workflow, Kubernetes CronJob manifest, AWS EventBridge rule, or systemd timer — and copy the ready-to-paste snippet.

Presets

Minute0
Hour9
Day of Month*
Month*
Day of Week1

Expression

0 9 * * 1
🛡️ Verify zero uploads — open DevTools → Network tab

Open your browser's DevTools (F12), go to the Network tab, and use this tool. You will see zero outbound requests — all processing runs inside your browser sandbox via WebAssembly or pure JavaScript. Nothing you paste or upload is ever sent anywhere.

Use cases

Build a cron expression from scratch

Skip the syntax reference. Click the fields you want — 'Every 15 minutes', 'Weekdays only', 'Monthly on the 1st' — and the correct cron expression assembles itself.

Verify an inherited cron job

Paste a cron from a legacy codebase into the expression field and instantly see what it does and when it will next run — before touching anything in production.

Convert cron to AWS EventBridge format

AWS uses a 6-field format with mandatory '?' for either DOM or DOW. The toolkit auto-converts your 5-field cron to the correct AWS syntax.

Frequently Asked Questions

What is the difference between Scheduler Toolkit and Cron Explainer?

Cron Explainer is decode-only: paste an expression, get the explanation. Scheduler Toolkit adds a visual GUI builder — you compose the expression field-by-field instead of writing it from memory — then get the same explanation and platform snippets.

What does 'Every N' mode do?

'Every N' generates the step syntax: `*/N`. For example, Every 15 in the Minute field produces `*/15`, meaning the job runs at minute 0, 15, 30, and 45 of every hour.

Can I use comma-separated values in Specific mode?

Yes. In Specific mode, type `1,3,5` to mean 'on the 1st, 3rd, and 5th'. For Day of Week and Month fields, you can also click the named day/month chips instead of typing numbers.

Why does AWS EventBridge use a different format?

AWS EventBridge cron has 6 fields (adding a Year field) and requires that either DOM or DOW — but not both — be set to '?'. The toolkit auto-converts your standard 5-field cron to the correct AWS syntax.

Are the next run times in UTC or local time?

Local time — the times shown use your browser's system timezone. Cron jobs on servers typically run in UTC, so for production verification make sure your server timezone matches your expectations.

Want unlimited access + saved history?

Pro is $9/month · 30-day money-back guarantee.

Related Tools