human-timer

1.0.0 • Public • Published

human-timer

Tiny, human readable timer with no external dependencies. Specify the duration in seconds, add callbacks to timer ticks and end, stop it at any moment.


Installation:

npm install --save human-timer

Test

npm run test


Usage:

const timer = new HumanTimer({
    seconds: 7200, // 2 hour long duration
    zeroes: false, // won't turn 5 mins into 05 mins, default is true
    onEnd: () => console.log("END"),
    onTick: () => console.log(timer.hours, timer.minutes, timer.seconds)
});
 
timer.start();
timer.stop();
timer.restart(60);

Is there something wrong?

Please tell me!

Package Sidebar

Install

npm i human-timer

Weekly Downloads

4

Version

1.0.0

License

MIT

Unpacked Size

14 kB

Total Files

8

Last publish

Collaborators

  • ol-web