Last active
February 8, 2022 00:18
-
-
Save mucaho/d9a71cbe3f05200e136c to your computer and use it in GitHub Desktop.
Generic template for benchmarking / performance testing JavaScript code using the [Benchmark node module](https://www.npmjs.com/package/benchmark)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script src="https://wzrd.in/bundle/[email protected]"></script> | |
<script src="https://wzrd.in/bundle/[email protected]"></script> | |
<script src="https://wzrd.in/bundle/[email protected]"></script> | |
</head> | |
<body> | |
<script> | |
var Benchmark = require('benchmark'); | |
var suite = new Benchmark.Suite; | |
// add tests | |
suite.add('FirstTest', function() { | |
// first test here | |
}) | |
.add('SecondTest', function() { | |
// second test here | |
}) | |
// add listeners | |
.on('cycle', function(event) { | |
console.log(String(event.target)); | |
}) | |
.on('complete', function() { | |
console.log('Fastest is ' + this.filter('fastest').map('name')); | |
}) | |
// run tests async | |
.run({ 'async': true }); | |
</script> | |
</body> | |
</html> |
Also, pluck
seems to be undefined for me.
Changed to:
console.log('Fastest is ' + this.filter('fastest')[0].name);
@thybzi Thanks, Benchmark changed their API a bit with new version, I went ahead updated the example and also restricted the versions.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Doesn't work without including lodash:
<script src="https://cdn.jsdelivr.net/lodash/4.6.1/lodash.min.js"></script>