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 db;
// Setup IndexedDB
var request = indexedDB.open('testDB', 1);
request.onupgradeneeded = function(event) {
db = event.target.result;
var objectStore = db.createObjectStore('testStore', { keyPath: 'id' });
};
request.onsuccess = function(event) {
db = event.target.result;
};
Ready to run.
Test | Ops/sec | |
---|---|---|
write to local storage |
| ready |
write to indexed db |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.