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('String#match', function() {
!!'Hello World!'.match(/o/);
})
// 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 });
We’ve got API docs and unit tests.
Benchmark.js v1.0.0 has been tested in at least Adobe AIR 3.1, Chrome 5-21, Firefox 1.5-15, IE 6-9, Opera 9.25-12, Safari 3-6, Node.js 0.8.8, Narwhal 0.3.2, RingoJS 0.8, and Rhino 1.7RC5.
In a browser or Adobe AIR:
<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 for Node.js by Wade Simmons:
npm install microtime
In RingoJS v0.7.0-:
var Benchmark = require('benchmark').Benchmark;
In Rhino:
load('benchmark.js');