Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 923 Bytes

File metadata and controls

23 lines (18 loc) · 923 Bytes

Build Status Code Climate Test Coverage npm version Gitter

Install

npm install simple-benchmark

Example

var SimpleBenchmark = require('simple-benchmark');

benchmark = new SimpleBenchmark({label: 'something'});
benchmark.prettyPrint()

setTimeout(function(){
  benchmark.prettyPrint();
}, 2000);