<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.7.6/handlebars.min.js" integrity="sha512-zT3zHcFYbQwjHdKjCu6OMmETx8fJA9S7E6W7kBeFxultf75OPTYUJigEKX58qgyQMi1m1EgenfjMXlRZG8BXaw==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/4.0.1/mustache.min.js" integrity="sha512-6AXIWogbKpsHvoZJrJtHpIYES4wP8czSj0zk7ZfwOYS8GWYFNSykwdfapt7yQc4ikZytemBu+QyVObzBHJMwYg==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/hogan.js/3.0.2/hogan.min.js" integrity="sha512-F6j8lc1UBrmZHqUGreg4gNVVMCehTbf/LU0s/nnsQJYVeFSdpci+fcL48gsTd1Fbf08sD/kL+is2QiEssvJ70g==" crossorigin="anonymous"></script>
var template = "<strong>This is a slightly more complicated {{thing}}.</strong>.\n{{! Just ignore this business. }}\nCheck this out:\n{{#hasThings}}\n<ul>\n{{#things}}\n<li class={{className}}>{{word}}</li>\n{{/things}}</ul>.\n{{/hasThings}}\n{{^hasThings}}\n\n<small>Nothing to check out...</small>\n{{/hasThings}}";
var handlebarsRenderer = Handlebars.compile(template);
var hoganRenderer = Hogan.compile(template);
handlebarsRenderer({thing:"hello"});
hoganRenderer.render({thing:"hello"});
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
handlebarsRenderer({thing:"hello"}); | |
hoganRenderer.render({thing:"hello"}); |
Test name | Executions per second |
---|---|
handlebarsRenderer({thing:"hello"}); | 616718.5 Ops/sec |
hoganRenderer.render({thing:"hello"}); | 9193270.0 Ops/sec |
Let's break down the provided benchmark and explain what's being tested.
Benchmark Overview
The benchmark compares the rendering performance of three templating libraries: Handlebars, Hogan, and Mustache. The goal is to determine which library is faster when rendering a specific template with some data.
Template Analysis
The template contains several directives:
{{thing}}
: This will be replaced with the value of the "thing" variable.{{! Just ignore this business. }}
: This line will be ignored during rendering, and its contents are not relevant to the benchmark.{{#hasThings}}
: This is a loop that iterates over an array of objects (things
). Each object has a word
property, which will be rendered as an <li>
element with a specific class name.{{^hasThings}}
: This is another loop that iterates over the same array, but this time only when the hasThings
condition is false.Library Comparison
The three libraries being tested are:
Options Compared
The benchmark compares two rendering approaches:
handlebarsRenderer
function is used to render the template with the provided data ({{thing:"hello"}}).hoganRenderer.render()
method is used to render the same template with the same data.Pros and Cons of Each Approach
Library-Specific Considerations
Other Alternatives
If Handlebars or Hogan are not ideal choices, other templating libraries could be considered:
Keep in mind that the choice of templating library ultimately depends on the specific requirements and constraints of your project.