<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script>
jQuery.noConflict();
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/blissfuljs/1.0.4/bliss.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/cash/8.1.0/cash.min.js" integrity="sha512-sgDgZX/GgfD7qSeMjPN/oE9EQgXZJW55FIjdexVT60QerG2gAWhR9QDQEGt3O90Dy9jVcwMWsoTMhLgldIiKXw==" crossorigin="anonymous"></script>
<div id="foo">Hello World</div>
var text = document.getElementById("foo");
var text = document.getElementById("foo").textContent;
var text = document.getElementById("foo").innerHTML;
var text = $("#foo");
var text = $("#foo").text();
var text = $("#foo").html();
var text = Bliss("#foo");
var text = Bliss("#foo").textContent;
var text = jQuery("#foo");
var text = jQuery("#foo").text();
var text = jQuery("#foo").html();
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Vanilla Get ID | |
Vanilla Get Text | |
Vanilla Get Html | |
Cash Get ID | |
Cash Get Text | |
Cash Get Html | |
Bliss Get ID | |
Bliss Get Text | |
jQuery Get ID | |
jQuery Get Text | |
jQuery Get Html |
Test name | Executions per second |
---|---|
Vanilla Get ID | 14805622.0 Ops/sec |
Vanilla Get Text | 10148376.0 Ops/sec |
Vanilla Get Html | 8515400.0 Ops/sec |
Cash Get ID | 6742692.0 Ops/sec |
Cash Get Text | 5515666.0 Ops/sec |
Cash Get Html | 5110811.5 Ops/sec |
Bliss Get ID | 5126366.5 Ops/sec |
Bliss Get Text | 4400644.0 Ops/sec |
jQuery Get ID | 4996283.0 Ops/sec |
jQuery Get Text | 3501243.2 Ops/sec |
jQuery Get Html | 3862768.0 Ops/sec |
Measuring the performance of different JavaScript libraries and approaches is essential for web developers, especially when it comes to optimizing their applications for speed and efficiency.
Benchmark Overview
The provided benchmark test compares the execution times of four JavaScript libraries:
These libraries are used to retrieve the innerHTML or text content of an HTML element with the id "element".
Approaches Compared
There are two approaches compared in this benchmark:
element.innerHTML
property to access the element's content.cash('#element').text()
bliss('#element').text()
$("#element").text()
(note that this is a shorthand method, but it achieves the same result)Results
The benchmark results show the average execution times for each library and approach:
Library | Approach | Average Execution Time (ms) |
---|---|---|
Vanilla | Direct Element Access | 0.0126 |
Cash | Cash Method | 1.3135 |
Bliss | Bliss Method | 2.3438 |
jQuery | jQuery Shorthand Method | 3.1419 |
As expected, the native JavaScript approach (Vanilla) is the fastest, followed closely by the jQuery shorthand method. The Cash and Bliss libraries are significantly slower due to their additional overhead.
Key Takeaways
Overall, this benchmark provides valuable insights into the relative performance of different JavaScript libraries and approaches, which can help developers make informed decisions about their code optimizations.