<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teste</title>
</head>
<body>
<div id="container">
</div>
</body>
</html>
const tpl = document.getElementById('container');
tpl.innerHTML += `
<div>
<h1>Heading</h1>
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<button>Button</button>
</div>
`;
const tpl = document.createElement('template');
tpl.innerHTML = `
<div>
<h1>Heading</h1>
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<button>Button</button>
</div>
`;
const el = tpl.content.firstElementChild
document.documentElement.appendChild(el.cloneNode());
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
teste_template_string | |
test_template |
Test name | Executions per second |
---|---|
teste_template_string | 26.9 Ops/sec |
test_template | 52216.5 Ops/sec |
Let's break down what's being tested in this benchmark.
Overview
The benchmark is designed to measure the performance of two approaches for rendering HTML templates in JavaScript: using template literals (template strings) and using document.createElement
with innerHTML
.
Template Literals vs. Document.createElement
Both approaches aim to render an HTML string into a DOM element, but they differ in how they achieve this.
Template Literals
The first test case uses template literals (````) to create the HTML string. Template literals are a feature introduced in ECMAScript 2015 (ES6) that allows you to embed expressions inside string literals using backticks (`).
In this benchmark, the tpl.innerHTML
property is set to the template literal string, which is then rendered into the DOM.
Document.createElement
The second test case uses document.createElement
with innerHTML
to create the HTML string. This approach involves:
<template>
element using document.createElement('template')
.innerHTML
property of the template element to the HTML string.tpl.content.firstElementChild
.document.documentElement.appendChild(el.cloneNode())
.Pros and Cons
Template Literals:
Pros:
Cons:
Document.createElement:
Pros:
Cons:
Library Usage
There is no library usage in this benchmark.
Special JS Features/Syntax
The template literal feature (``) introduced in ES6 is being used here. Note that the document.createElement('template')
syntax is also a recent addition to JavaScript, allowing you to create <template>
elements programmatically.
Alternatives
Other approaches for rendering HTML templates include:
HTML Import
(for importing and rendering HTML modules).Keep in mind that the choice of approach depends on the specific use case, performance requirements, and personal preference.