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
var nextTick1 = function () {
var channel = new MessageChannel();
var queue = [];
channel.port1.onmessage = function () {
queue.shift()();
};
function nextTick(fn) {
queue.push(fn);
channel.port2.postMessage();
}
return nextTick;
}();
var nextTick2 = function () {
function nextTick(fn) {
return setTimeout(fn, 0);
}
return nextTick;
}();
var nextTick3 = function () {
function nextTick(fn) {
var image = new Image();
image.onerror = fn;
image.src = 'data:,foo';
}
return nextTick;
}();
var nextTick4 = function () {
function nextTick(fn) {
var script = document.createElement('script');
script.onload = function() {
document.body.removeChild(script);
fn();
}
script.src = 'data:text/javascript,';
document.body.appendChild(script);
}
return nextTick;
}();
var nextTick5 = function () {
// FAILS ON SOME BROWSERS SO USE SETTIMEOUT INSTEAD
function nextTick(fn) {
var req = new XMLHttpRequest;
req.open('GET','data:text/plain,foo', false);
req.onreadystatechange = function() {
req.onreadystatechange = null;
fn();
};
req.send(null);
}
return nextTick;
}();
var nextTick6 = function () {
var key = 'nextTick__' + Math.random();
var queue = [];
window.addEventListener('message', function (e) {
if (e.data !== key) {
return;
}
queue.shift()();
},false);
function nextTick(fn) {
queue.push(fn);
window.postMessage(key, '*');
}
return nextTick;
}();
var nextTick7 = function () {
function nextTick(fn) {
requestAnimationFrame(fn);
}
return nextTick;
}();
Ready to run.
Test | Ops/sec | |
---|---|---|
MessageChannel |
| ready |
setTimeout |
| ready |
Image.onerror |
| ready |
script.onload |
| ready |
XMLHttpRequest.onreadystatechange |
| ready |
window.onmessage |
| ready |
requestAnimationFrame |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.