<div id="b"></div>
function e() {}
function a(c) {
c && document.addEventListener('DOMNodeInserted', e)
for (let i = 100; i--;) {
let element = b.cloneNode()
document.body.appendChild(element)
document.body.removeChild(element)
}
c && document.removeEventListener('DOMNodeInserted', e)
}
a(false)
a(true)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Normal | |
MutationEvents |
Test name | Executions per second |
---|---|
Normal | 2535.5 Ops/sec |
MutationEvents | 1515.9 Ops/sec |
The provided benchmark tests the performance impact of using Mutation Events in JavaScript through two scenarios executed in a web environment. Specifically, the benchmarks test the behavior of the addEventListener
and removeEventListener
methods when adding and removing elements from the DOM.
The benchmark prepares an environment to test the performance of DOM manipulation by using the following approach:
e()
: An empty function meant to serve as a callback for event handling.a(c)
: A function that accepts a boolean c
.c
is true, it adds an event listener for the DOMNodeInserted
event.<div>
with id="b"
) and appending it to the document's body, followed by removing it.c
is true, it removes the event listener after the iterations.Two distinct test cases are defined, each testing the same overall functionality but differing in how the event listener is handled:
Normal (a(false)): This test case disables the Mutation Event listener. The function a(false)
runs the DOM manipulation without tracking the inserted nodes.
MutationEvents (a(true)): This test case enables the Mutation Event listener. The function a(true)
runs the same DOM manipulation while tracking the insertion of nodes through the event listener.
The benchmark results show the ExecutionsPerSecond
for each test:
MutationEvents
)Pros:
Cons:
Normal
)Pros:
Cons:
MutationObserver API:
Performance Impact: Understanding the performance implications is key in web development. While using listeners might seem fruitful for interactivity, benchmarks like this help highlight when to optimize code paths—especially in heavy DOM manipulation scenarios.
The provided benchmarks illustrate a crucial trade-off in web development between functionality (using event listeners) and performance. Evaluating different JavaScript techniques, such as the older Mutation Events versus the modern MutationObserver or directly manipulating the DOM without reactive measures, remains essential for building efficient web applications.