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
Does using basket.js improve caching performance over the browser cache?
<script src="http://addyosmani.github.io/basket.js/dist/basket.min.js">
</script>
// Warm the cache
// A random URL from a CORS enabled data source
var url = "http://code.jquery.com/jquery.min.js";
basket.require({ url: url, key: "jquery" });
basket.clear();
var scripts = document.getElementsByTagName("script");
for (var i = 0; i < scripts.length; i++) {
var script = scripts[i];
if (script.defer || script.src === url) {
script.parentElement.removeChild(script);
}
}
Ready to run.
Test | Ops/sec | |
---|---|---|
basket.js |
| ready |
Browser cache |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.