A stopwatch and countdown clock module for node.js
Install
npm install timer-stopwatch
How to
The Gist new Stopwatch([countDownMS], [options])
Basic timers
var Stopwatch = ; var timer = 60000; // A new countdown timer with 60 secondsvar stopwatch = ; // A new count up stopwatch. Starts at 0.
Event Methods
// Fires every 50ms by default. Change setting the 'refreshRateMS' optionstimer; // Fires when the timer is donetimer; // Fires when the timer is almost complete - default is 10 seconds remaining. Change with 'almostDoneMS' optiontimer; //These methods are chainabletimer;
Timer Methods
timerstart;timer;timer; // Toggles the running statetimer; // optional countDownMS to reset countdown to that many milliseconds
Properties
timerms; // Number of milliseconds on the clock
Options
var options = refreshRateMS: 10 // How often the clock should be updated almostDoneMS: 10000 // When counting down - this event will fire with this many milliseconds remaining on the clock var timer = 60000 options;
Breaking Changes in v0.2
- The 'forcestop' event is being depreciated in favour of 'stop'.
- Use the onTime, onAlmostDone, onDone and onStop methods in favour of .on('eventname').
Testing
Unit and Integration tests (requires dev dependencies)
npm test
License
MIT License