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
function burnCycles(durationMs =100) {
const start = Date.now();
while (Date.now() - start < durationMs) {
// Busy loop to burn CPU cycles
}
}
function getData() {
return {
a: "foo",
b: "bar",
c: "charles",
d: "delta",
e: "echo"
}
}
Ready to run.
Test | Ops/sec | |
---|---|---|
Transform all |
| ready |
Transform 1 |
| ready |
Transform all - with burn cycles |
| ready |
Transform 1 - with burn cycles |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.