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
<canvas id="canvas1" width="500" height="500" style="position:absolute;z-index:1"></canvas>
<canvas id="canvas3" width="500" height="500" style="position:absolute;z-index:2"></canvas>
<script>
var can = document.getElementById('canvas1');
var ctx = can.getContext('2d');
var can3 = document.getElementById('canvas3');
var ctx3 = can3.getContext('2d');
var can2 = document.createElement('canvas');
can2.width = 150;
can2.height = 150;
var ctx2 = can2.getContext('2d');
function render(ctx) {
ctx.beginPath();
ctx.strokeStyle = 'red';
ctx.lineWidth = 4;
ctx.moveTo(10,10);
ctx.lineTo(10,30);
ctx.lineTo(30,30);
ctx.lineTo(40,70);
ctx.quadraticCurveTo(72,43,22,12);
ctx.quadraticCurveTo(12,43,12,102);
ctx.stroke();
}
var s=false;
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
render |
| ready |
pre-rendered |
| ready |
pre-rendered-visibility |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.