
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
devkits-cron
Advanced tools
Parse and explain cron expressions — understand cron schedules in plain English
Parse and explain cron expressions in plain English. See next run times.
npm install -g devkits-cron
# Parse and explain a cron expression
cronparse "*/5 * * * *"
# Output: Every 5 minutes
# Show next run times
cronparse "0 9 * * 1-5" --next 10
# Common aliases work too
cronparse "@daily"
cronparse "@weekly" --next
# Show examples
cronparse --examples
const { parse, getNextRuns, describe } = require('devkits-cron');
// Parse expression
const result = parse('0 9 * * 1-5');
console.log(result.description); // "At 09:00, on Monday-Friday"
// Get next run times
const { runs } = getNextRuns('0 0 1 * *', 5);
runs.forEach(r => console.log(r)); // Array of Date objects
// Full description
describe('*/15 * * * *'); // { description: "Every 15 minutes" }
┌───────────── minute (0-59)
│ ┌───────────── hour (0-23)
│ │ ┌───────────── day of month (1-31)
│ │ │ ┌───────────── month (1-12, JAN-DEC)
│ │ │ │ ┌───────────── day of week (0-6, SUN-SAT)
│ │ │ │ │
* * * * *
| Character | Meaning | Example |
|---|---|---|
* | All values | * * * * * (every minute) |
, | List separator | 1,15,30 * * * * |
- | Range | 0 9-17 * * * (9 AM to 5 PM) |
/ | Step values | */5 * * * * (every 5 min) |
| Alias | Expression | Meaning |
|---|---|---|
@yearly | 0 0 1 1 * | Once a year |
@monthly | 0 0 1 * * | Once a month |
@weekly | 0 0 * * 0 | Once a week |
@daily | 0 0 * * * | Once a day |
@hourly | 0 * * * * | Once an hour |
# Every 5 minutes
$ cronparse "*/5 * * * *"
Every 5 minutes
# Weekdays at 9 AM
$ cronparse "0 9 * * 1-5"
At 09:00, on Monday-Friday
# First of every month at midnight
$ cronparse "0 0 1 * *" --next 3
Next 3 run times:
1. Mon 2026-03-01 00:00
2. Wed 2026-04-01 00:00
3. Fri 2026-05-01 00:00
# Every 15 minutes on weekdays 9 AM - 5 PM
$ cronparse "*/15 9-17 * * 1-5"
At minute */15 between 09:00-17:00, on Monday-Friday
🔍 Build something amazing? Check out API Monitor — simple, affordable API monitoring for indie hackers. Get alerted before your customers notice. Just $9/mo.
If you find this tool useful, please consider supporting the project:
Become a sponsor: Open Collective - DevKits
Prefer crypto? We accept:
0xDea4a6A20fCB44467e45Ef378972F54B22dC59db0xDea4a6A20fCB44467e45Ef378972F54B22dC59dbDonation Perks:
After donating, email your transaction hash to devkits@aiforeverthing.com to claim perks.
MIT — DevKits Team
FAQs
Parse and explain cron expressions — understand cron schedules in plain English
The npm package devkits-cron receives a total of 5 weekly downloads. As such, devkits-cron popularity was classified as not popular.
We found that devkits-cron demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.