do-you-even-bench

v1.0.5
quick and dirty benchmark.js wrapper
benchmark

Do you even bench

basic example:

require('do-you-even-bench')([
  { name: 'test 1', fn: function() { ... } },
  { name: 'test 2', fn: function() { ... } },
  { name: 'test 3', fn: function() { ... } },
]);

example /w setup

require('do-you-even-bench', [
  {
    name: 'test 1',
    setup: function() {
      var data = calcuateData();
    },

    fn: function() { 
      expensiveThing(data); 
    }
  },
]);

testing in the browsers

curl http://git.io/vZtJK > index.html
browserify <file-containing-test.js> > out.js
open index.html
npm i do-you-even-bench

Metadata

  • ISC
  • Whatever
  • Stefan Penner
  • released 8/3/2017

Downloads