<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);
var mustacheRender = Mustache.parse(template);
Handlebars.compile(template)
Hogan.compile(template)
Mustache.parse(template)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Handlebars | |
Hogan | |
Mustache |
Test name | Executions per second |
---|---|
Handlebars | 4064594.0 Ops/sec |
Hogan | 1805653.8 Ops/sec |
Mustache | 1996946.4 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
Benchmark Overview
The benchmark compares the performance of three template rendering libraries: Handlebars, Hogan, and Mustache. The test case uses the same template string, which is defined in the Script Preparation Code
section of the benchmark definition JSON. The task is to compile this template string into a renderable format using each library.
Template Rendering Libraries
Comparison Options
The benchmark compares the performance of each library by executing their respective compile
or parse
methods on the same template string. The execution time is measured in executions per second, which represents how many times the template is rendered within a given timeframe.
Pros and Cons
Here's a brief summary of the pros and cons for each library:
Other Considerations
When choosing a template rendering library, consider the following factors:
Latest Benchmark Results
The latest benchmark results show that:
Keep in mind that these results are specific to this particular template and may vary for other use cases.
Other Alternatives
If you're interested in exploring alternative template rendering libraries, consider: