Explains a cron expression in plain English.
Cron Explainer turns a cron expression into a plain English description so you can verify what a crontab schedule actually does. Paste a cron expression and instantly see when it runs, which helps when reading, debugging, or reviewing scheduled jobs. Everything runs in your browser, so no setup or command line is needed.
No. The cron expression is parsed entirely in your browser using a JavaScript library, and nothing is uploaded or stored remotely.
It accepts standard cron expressions and parses them with the cronstrue library, including the common five-field format (minute, hour, day of month, month, day of week) plus extensions cronstrue supports.
Parsing throws on invalid expressions, so the tool shows an error instead of a description. Fix the offending field and the explanation will update.
No. It only explains what an expression means in plain English; it does not execute, schedule, or store any jobs.
No. The input is trimmed before parsing, so surrounding spaces are ignored.