Parse, generate, and validate cron expressions with instant human-readable descriptions and next scheduled run times. This free online crontab tool supports standard 5-field Unix cron syntax used in Linux crontab, Kubernetes CronJobs, GitHub Actions, Jenkins, and CI/CD pipelines. Enter a cron expression or use presets to build your schedule. A powerful alternative to crontab.guru — all processing runs in your browser.
minute hour day-of-month month day-of-week. Each field accepts specific values, ranges (1-5), wildcards (*), or step values (*/5). For example, 0 9 * * 1-5 means "at 9:00 AM, Monday through Friday." Cron originated in Unix but is now used in Kubernetes CronJobs, GitHub Actions, Jenkins, AWS CloudWatch, and many CI/CD systems.*/5 * * * *. The */5 in the minute field is a step value meaning "every 5th minute." Similarly: */10 * * * * for every 10 minutes, */15 * * * * for every 15 minutes, 0 * * * * for the top of every hour, and 0 */2 * * * for every 2 hours at minute 0.L (last day), W (nearest weekday), # (nth weekday of month), and ? (no specific value). This tool parses standard 5-field Unix cron expressions.node-cron on Windows.