ben

0.0.0 • Public • Published

ben

Benchmark synchronous and asynchronous snippets simply.

ben the big

examples

synchronous

var ben = require('ben');
 
var ms = ben(function () {
    JSON.parse('[1,2,3]')
});
 
console.log(ms + ' milliseconds per iteration');

output:

0.0024 milliseconds per iteration

asynchronous

var ben = require('ben');
 
var test = function (done) {
    setTimeout(done, 10);
};
 
ben.async(test, function (ms) {
    console.log(ms + ' milliseconds per iteration');
});

output:

10.39 milliseconds per iteration

methods

ben(times=10000, testFn)

Return how many milliseconds it takes to execute testFn.

testFn will be executed times many times.

alias: ben.sync()

ben.async(times=100, testFn, cb)

Compute how many milliseconds it takes to complete the asynchronous function testFn. testFn(done) will be called with a done callback to move along to the next iteration.

After testFn is run times many times, cb will be called with the number of milliseconds on average that testFn took to finish.

install

With npm, do:

npm install ben

Readme

Keywords

none

Package Sidebar

Install

npm i ben

Weekly Downloads

164

Version

0.0.0

License

MIT/X11

Last publish

Collaborators

  • nopersonsmodules