Cron Builder
Constructeur visuel d'expressions cron avec validation, aperçu des prochaines exécutions et export vers différents formats.
Cron Builder
Constructeur visuel d'expressions cron avec validation, aperçu des prochaines exécutions et export vers différents formats.
Cron Builder
*****
JAN
FEB
MAR
APR
MAY
JUN
JUL
AUG
SEP
OCT
NOV
DEC
SUN
MON
TUE
WED
THU
FRI
SAT
Aperçu de la Planification
Expression Valide
Every minute
⚠ This runs every minute - consider if this is intentional
Statistiques de Planification
Par Jour
1440
Par Semaine
10080
Par Mois
43646
Écart Max
1 min
Prochaines Exécutions
1/27/2026, 1:38:42 PM
in 1 min
1/27/2026, 1:39:42 PM
in 2 min
1/27/2026, 1:40:42 PM
in 3 min
1/27/2026, 1:41:42 PM
in 4 min
1/27/2026, 1:42:42 PM
in 5 min
Formats d'Export
crontab
# Crontab entry * * * * * /path/to/command
aws
# AWS CloudWatch Events cron(? * * * *)
kubernetes
# Kubernetes CronJob spec: schedule: "* * * * *"
github Actions
# GitHub Actions
on:
schedule:
- cron: '* * * * *'node Cron
// Node.js (node-cron)
const cron = require('node-cron');
cron.schedule('* * * * *', () => {
console.log('Running task');
});python
# Python (APScheduler)
from apscheduler.triggers.cron import CronTrigger
trigger = CronTrigger.from_crontab('* * * * *')