0.1.1 • Published 8 years ago

accurate-timer-js v0.1.1

Weekly downloads
13
License
MIT
Repository
github
Last release
8 years ago

accurate-timer-js

An accurate javascript timer for the browser.

It uses a web worker and performance.now.

http://caniuse.com/#search=performance.now http://caniuse.com/#search=web%20worker

Installation

npm install accurate-timer-js --save
bower install accurate-timer-js --save

Usage

var delay = 1000; // milliseconds
var timer = new AccurateTimer(function tick() {
    console.log('tick');
    this.stop();
}, delay);

timer.start();

Changelog

0.1.0 (2016-05-19)

First release

0.1.1 (2016-05-20)

Minor changes

0.1.1

8 years ago

0.1.0

8 years ago