1.0.1 • Published 7 years ago

precise-timer v1.0.1

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

precise-timer

A precise timer for Node.js. Delivers its result in milliseconds with decimals. Default is 2 decimals, but you can use up to 6 decimals - to get down to nanosecond precision.

Usage

npm install precise-timer

Example

PreciseTimer = require('precise-timer');

// decimals is optional, defaults to 2
let timer = new PreciseTimer({decimals:6});
let randomNumberArray = [];

// a loop that is time consuming
while(randomNumberArray.length < 100000){
  randomNumberArray.push(Math.random());
}

// log how long time that has elapsed
console.log(timer.elapsed);
1.0.1

7 years ago

1.0.0

7 years ago