Skip to content

danylaporte/arewefaster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Benchmark functions and compare result with other implementation over time.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published