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
<table>
<thead>
<tr>
<th>Foo</th>
<th>Bar</th>
<th>Foobar</th>
<th>Barfoo</th>
</tr>
</thead>
<tbody id="results">
</tbody>
</table>
<script src="http://fb.me/react-0.11.2.min.js"></script>
<script src="http://fb.me/JSXTransformer-0.11.2.js"></script>
var request = function(uri, callback) {
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", "http://render.ospwebtest.opera.com/" + uri, true);
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
callback(xmlhttp.responseText);
}
}
xmlhttp.send();
};
document.getElementById("results").innerHTML = '';
Ready to run.
Test | Ops/sec | |
---|---|---|
ReactJS render |
| ready |
InnerHTML server side rendered |
| ready |
vanillajs client render |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.