Skip to content

A benchmarking library that works on nearly all JavaScript platforms, supports high-resolution timers, and returns statistically significant results. As used on jsPerf.com.

License

Notifications You must be signed in to change notification settings

parsing/benchmark.js

This branch is 210 commits behind bestiejs/benchmark.js:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e279b49 · Jan 26, 2014
Jan 26, 2014
Jan 1, 2014
Jan 23, 2014
Jan 26, 2014
Jan 26, 2014
Jul 3, 2012
Dec 28, 2013
Jan 13, 2014
Jan 1, 2014
Jan 24, 2014
Jan 26, 2014
Dec 9, 2013
Oct 1, 2012
Jan 26, 2011
Jul 3, 2012
Dec 3, 2013

Repository files navigation

Benchmark.js v1.0.0

A robust benchmarking library that works on nearly all JavaScript platforms1, supports high-resolution timers, and returns statistically significant results. As seen on jsPerf.

Download

Dive in

We’ve got API docs and unit tests.

For a list of upcoming features, check out our roadmap.

Support

Benchmark.js has been tested in at least Chrome 531, Firefox 226, IE 6-11, Opera 9.2518, Safari 3-7, Node.js 0.6.210.10.24, Narwhal 0.3.2, PhantomJS 1.9.2, RingoJS 0.9, and Rhino 1.7RC5.

Installation and usage

Benchmark.js’ only hard dependency is Lo-Dash.

In a browser:

<script src="lodash.js"></script>
<script src="benchmark.js"></script>

Optionally, expose Java’s nanosecond timer by adding the nano applet to the <body>:

<applet code="nano" archive="nano.jar"></applet>

Or enable Chrome’s microsecond timer by using the command line switch:

--enable-benchmarking

Via npm:

npm install benchmark

In Node.js and RingoJS v0.8.0+:

var Benchmark = require('benchmark');

Optionally, use the microtime module by Wade Simmons:

npm install microtime

In RingoJS v0.7.0-:

var Benchmark = require('benchmark').Benchmark;

In Rhino:

load('benchmark.js');

In an AMD loader like RequireJS:

require({
  'paths': {
    'benchmark': 'path/to/benchmark',
    'lodash': 'path/to/lodash',
    'platform': 'path/to/platform'
  }
},
['benchmark'], function(Benchmark) {
  console.log(Benchmark.platform.name);
});

Usage example:

var suite = new Benchmark.Suite;

// add tests
suite.add('RegExp#test', function() {
  /o/.test('Hello World!');
})
.add('String#indexOf', function() {
  'Hello World!'.indexOf('o') > -1;
})
// add listeners
.on('cycle', function(event) {
  console.log(String(event.target));
})
.on('complete', function() {
  console.log('Fastest is ' + this.filter('fastest').pluck('name'));
})
// run async
.run({ 'async': true });

// logs:
// > RegExp#test x 4,161,532 +-0.99% (59 cycles)
// > String#indexOf x 6,139,623 +-1.00% (131 cycles)
// > Fastest is String#indexOf

BestieJS

Benchmark.js is part of the BestieJS "Best in Class" module collection. This means we promote solid browser/environment support, ES5+ precedents, unit testing, and plenty of documentation.

Authors

twitter/mathias twitter/jdalton
Mathias Bynens John-David Dalton

Contributors

twitter/kitcambridge
Kit Cambridge

About

A benchmarking library that works on nearly all JavaScript platforms, supports high-resolution timers, and returns statistically significant results. As used on jsPerf.com.

Resources

License

Stars

Watchers

Forks

Packages

No packages published