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
DOM Queries for xpath vs selectors vs tags.
This revision (4) has a more robust "find elements with this class" function for the 'tagName' and xpath tests since that's what you'd want in the real world.
<div>
<p>
<ul>
<li>
<a class="test foo"></a>
</li>
</ul>
</p>
</div>
<div>
<p>
<ul>
<li>
<a class="meh"></a>
</li>
</ul>
</p>
</div>
<div>
<p>
<ul>
<li>
<a class="test"></a>
</li>
</ul>
</p>
</div>
<div>
<p>
<ul>
<li>
<a class="test"></a>
</li>
</ul>
</p>
</div>
<div>
<p>
<ul>
<li>
<a class="wtf"></a>
</li>
</ul>
</p>
</div>
<div>
<p>
<ul>
<li>
<a class="test"></a>
</li>
</ul>
</p>
</div>
<div>
<p>
<ul>
<li>
<a class="test"></a>
</li>
</ul>
</p>
</div>
<div>
<p>
<ul>
<li>
<a class="test"></a>
</li>
</ul>
</p>
</div>
<div>
<p>
<ul>
<li>
<a class="test bar"></a>
</li>
</ul>
</p>
</div>
<div>
<p>
<ul>
<li>
<a class="test"></a>
</li>
</ul>
</p>
</div>var a = [];
var doc = document;Ready to run.
| Test | Ops/sec | |
|---|---|---|
| xpath | | ready |
| querySelector | | ready |
| tagName | | ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.