1.2.2 • Published 4 years ago

event-clock v1.2.2

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

Event Clock Build Status

Introduction:

Create timed event callbacks.

Example use:

var EventClock = require('event-clock');

EventClock.on('19:00:30', function () {
  // this will fire at 19:00:30 system time
});

var cb = function () {
  // this will fire 19:01:00 system time
}

EventClock.on('19:01', cb);

// removable with:
EventClock.off('19:01', cb);

// stop clock
EventClock.stop();

Development:

npm install
npm test
1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago

0.1.0

10 years ago