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 src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.min.js"></script>
<script src="https://code.jquery.com/jquery-git2.min.js"></script>
<script src="https://zeptojs.com/zepto.min.js"></script>
<script src="https://fastjs.net/js/fast.min.js"></script>
<script src="https://rawgithub.com/01org/appframework/master/appframework.min.js"></script>
<script src="https://bytes1.dyndns.org/BSI/website-app.js"></script>
<div id="container"></div>
var container = document.getElementById('container');
var ul, li, i = 0;
var msg = "Hello World ";
var div = document.createElement('div');
function htmlToFragment(html) {
div.innerHTML = html;
var fragment = document.createDocumentFragment();
for (var i = -1, c = div.childNodes.length; ++i < c;) {
fragment.appendChild(div.childNodes[i]);
}
return fragment;
}
container.innerHTML = "";
Ready to run.
Test | Ops/sec | |
---|---|---|
jQuery |
| ready |
Intel App Framework |
| ready |
Zepto |
| ready |
Angular jqLite |
| ready |
BSI |
| ready |
fastjs |
| ready |
"native" |
| ready |
Native |
| ready |
AppFW .create |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.