GitHub - ashack293/schedule: A tiny cron-like tool for Node.js

Skip to content

Navigation Menu

Sign in

Appearance settings

Schedule

A tiny cron-like tool for Node.js

Build Status Coverage Status


Install

Usage

var every = require('schedule').every;
every('2 s').do(function() {
  // do your job
});

You can stop interval when some exception

var every = require('schedule').every;
var ins = every('2 seconds').do(cb);

process.on('uncaughtException', function() {
  ins.stop();
})

Format

  • ms, millisecond, milliseconds
  • s, second, seconds
  • m, minute, minutes
  • h, hour, hours
  • d, day, days

License

MIT

Languages

  • JavaScript 88.4%
  • Makefile 11.6%