How to Use
- Choose a time dimension (minute/hour/day/week/month).
- Select options visually and the Cron string updates instantly.
- Review the plain-English explanation and next-run preview.
- Copy the expression into crontab or your scheduler.
Core Features
- Natural Language to Cron: Explain complex expressions in human-readable English.
- Next Execution Preview: Preview the next 5 run times to validate schedules fast.
- Visual Scheduler: Build schedules with tabs for minutes, hours, days, weeks, and months.
- Crontab Compatible: Output common 5-field crontab expressions ready to paste.
- Keep it private: Run locally so schedules are never uploaded.
Related Tools
Secure JSON formatter: format, validate, and fix JSON locally. Beautify/minify, highlight errors, generate TypeScript or Zod, convert to XMLโprivate. Try now.
Free JSONPath tester and evaluator for API JSON. Extract matching nodes in real time, inspect paths, and copy JSON results while parsing stays local in your browser.
Convert JSON objects or arrays to CSV locally in your browser. Flatten fields, preview the result, then copy or download CSV without uploading data.
Convert CSV text or files to JSON arrays locally in your browser. Supports headers, comma/semicolon/tab delimiters, drag-and-drop files, copy, and download with no uploads.
Compare two JSON documents locally in your browser. Sort object keys for a semantic diff, ignore key-order noise, and mark added, removed, and modified fields without uploads.
Minify JSON into one line, remove indentation and line breaks, and compare original size, minified size, saved bytes, and saved percentage.
Free online JSON to TypeScript converter. Instantly generate TypeScript interfaces and types from your JSON payloads. 100% private, client-side code generation.
Convert YAML to formatted JSON locally in your browser. This developer tool supports live conversion, multi-document YAML, line-aware errors, copy, and JSON download without storing data.
Calculation Logic
- Cron uses 5 fields: minute, hour, day-of-month, month, day-of-week.
- We parse wildcards, ranges, and step values (e.g.,
*/5) into UI state, then generate the string back. - Next-run preview iterates forward from current browser time to compute the next N matching timestamps.
FAQ
What does '*/5 * * * *' mean?
It means โrun every 5 minutes.โ The tool explains it in plain English and shows the matching visual schedule.
How to schedule a job for 8 AM every Monday?
Use the Weekly tab, select Monday, and set hour to 08. The tool generates 0 8 * * 1.
Is my data safe (local/privacy)?
Yes. Everything runs locally with no uploads, storage, or server processing.
Is it free? Any limits?
Itโs free. We preview the next 5 runs by default so you can verify quickly.
Why do preview times differ from my server?
Cron runs in the server timezone, while preview uses your browser timezone. Always confirm the target timezone before deploying.