0.0.8 • Published 10 years ago

arewefaster v0.0.8

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

arewefaster

Benchmark functions and compare result with other implementation over time.

Installation

$ npm install arewefaster

##Usage

command-line

$ arewefaster [options] <files>

api

var arewefaster = require('arewefaster');

arewefaster(suite, function (err, result) {
});

interface

suite('Benchmarking timeouts', function() {
	
	test('setTimeout of 1ms', function (done) {
		setTimeout(done, 1);
	});
	
	test('setTimeout of 2ms', function (done) {
		setTimeout(done, 2);
	});
	
});

Documentation

License

The MIT License (MIT)

Copyright (c) 2015 Dany Laporte

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago