jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
<script>
var target = document.getElementById('target');
function test(deferred, url){
var script = document.createElement('script');
script.src = url;
script.onreadystatechange = function() {
if (this.readyState == 'complete') {
deferred.resolve()
}
};
script.onload = function() {
deferred.resolve()
};
target.appendChild(script);
};
</script>
<div id="target"></div>
target.removeChild(target.firstChild);
jQuery.noConflict(true);
Ready to run.
Test | Ops/sec | |
---|---|---|
jquery/1.11.1 |
| ready |
jquery/1.10.2 |
| ready |
1.9.1 |
| ready |
1.8.2 |
| ready |
1.7.2 |
| ready |
1.6.4 |
| ready |
1.5.2 |
| ready |
1.4.4 |
| ready |
1.3.2 |
| ready |
1.2.6 |
| ready |
zepto 1.1.3 |
| ready |
2.1.1 |
| ready |
Intel App FW 2.1 |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.