<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"});
Mustache.render(template, {thing:"hello"});
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
HB | |
Hogan | |
Mustache |
Test name | Executions per second |
---|---|
HB | 244784.4 Ops/sec |
Hogan | 3888091.5 Ops/sec |
Mustache | 865589.4 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
What is being tested?
The provided benchmark measures the performance of three different templating engines:
Specifically, each test case evaluates a predefined template with a single variable thing
set to "hello"
. The goal is to determine which templating engine renders the template fastest.
Options compared
The benchmark compares three approaches:
handlebarsRenderer
) to render the template.hoganRenderer
) to render the template.Mustache.render
) to render the template.Pros and Cons of each approach
Here's a brief summary:
Library explanations
Special JS feature or syntax
There are no special JavaScript features or syntaxes mentioned in this benchmark. All three libraries support standard JavaScript functions and variables.
Other alternatives
If you're interested in exploring other templating engines, some popular alternatives include:
When choosing a templating engine, consider factors like performance, complexity, and community support. MeasureThat.net provides a valuable resource for comparing the rendering times of different libraries and helping you make informed decisions about your project's template needs.