0.1.0 • Published 6 years ago

obs-cron v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

obs-cron

license ci coverage version


usage

import cron from 'obs-cron';

cron("* * * * *").subscribe(() => {
    console.log(new Date());
});

crontab format

 # ┌──────────── minute
 # │ ┌────────── hour
 # │ │ ┌──────── day of month
 # │ │ │ ┌────── month
 # │ │ │ │ ┌──── day of week
 # │ │ │ │ │
 # * * * * *
fieldallowed values
minute0-59
hour0-23
day of month1-31
month1-12
day of week0-6 (0 is Sunday)

more: https://www.freebsd.org/cgi/man.cgi?crontab(5)

0.1.0

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago