Hadlebars vs. Hogan vs. Mustache vs. jsRender vs Dust (v37)

Revision 37 of this benchmark created by H0WARD on


Description

Illustrate how much time string-based template engines use executing browsers HTML parser.

Optimizing string interpolation performance is focusing to 10% of the problem, not the 90%.

Preparation HTML

<div id="target"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

<script src="http://mustache.github.io/extras/mustache.js"></script>

<script src="https://github.com/downloads/wycats/handlebars.js/handlebars-1.0.rc.1.min.js"></script>

<script src="http://jsdo.it/kyo_ago/6M93/js"></script>

<script src="http://akdubya.github.io/dustjs/dist/dust-full-0.3.0.js"></script>

<script src="http://borismoore.github.io/jsrender/jsrender.js"></script>

<script src="http://twitter.github.com/hogan.js/builds/2.0.0/hogan-2.0.0.js"></script>

<script>
  window.mustacheTemplate = "<div>{{template}}<h1 class='header'>{{header}}</h1><h2 class='header2'>{{header2}}</h2><h3 class='header3'>{{header3}}</h3><h4 class='header4'>{{header4}}</h4><h5 class='header5'>{{header5}}</h5><h6 class='header6'>{{header6}}</h6><ul class='list'>{{#list}}<li class='item'>{{.}}</li>{{/list}}</ul></div>";

  window.mustacheCompiledTemplate = Mustache.compile("<div>{{template}}<h1 class='header'>{{header}}</h1><h2 class='header2'>{{header2}}</h2><h3 class='header3'>{{header3}}</h3><h4 class='header4'>{{header4}}</h4><h5 class='header5'>{{header5}}</h5><h6 class='header6'>{{header6}}</h6><ul class='list'>{{#list}}<li class='item'>{{.}}</li>{{/list}}</ul></div>");

  window.handlebarsTemplate = Handlebars.compile("<div>{{template}}<h1 class='header'>{{header}}</h1><h2 class='header2'>{{header2}}</h2><h3 class='header3'>{{header3}}</h3><h4 class='header4'>{{header4}}</h4><h5 class='header5'>{{header5}}</h5><h6 class='header6'>{{header6}}</h6><ul class='list'>{{#list}}<li class='item'>{{this}}</li>{{/list}}</ul></div>");
  
  window.hoganTemplate = Hogan.compile("<div>{{template}}<h1 class='header'>{{header}}</h1><h2 class='header2'>{{header2}}</h2><h3 class='header3'>{{header3}}</h3><h4 class='header4'>{{header4}}</h4><h5 class='header5'>{{header5}}</h5><h6 class='header6'>{{header6}}</h6><ul class='list'>{{#list}}<li class='item'>{{.}}</li>{{/list}}</ul></div>");

  window.templateTemplate = "<div><{template}h1 class='header'>{{header}}</h1><h2 class='header2'>{{header2}}</h2><h3 class='header3'>{{header3}}</h3><h4 class='header4'>{{header4}}</h4><h5 class='header5'>{{header5}}</h5><h6 class='header6'>{{header6}}</h6><ul class='list'>{{loop list}}<li class='item'>{{this}}</li>{{/loop}}</ul></div>";

  $.templates({ jsRenderTemplate: "<div>{{:template}}<h1 class='header'>{{:header}}</h1><h2 class='header2'>{{:header2}}</h2><h3 class='header3'>{{:header3}}</h3><h4 class='header4'>{{:header4}}</h4><h5 class='header5'>{{:header5}}</h5><h6 class='header6'>{{:header6}}</h6><ul class='list'>{{for list}}<li class='item'>{{:#data}}</li>{{/for}}</ul></div>"}); 

  dust.loadSource(dust.compile("<div>{template}<h1 class='header'>{header}</h1><h2 class='header2'>{header2}</h2><h3 class='header3'>{header3}</h3><h4 class='header4'>{header4}</h4><h5 class='header5'>{header5}</h5><h6 class='header6'>{header6}</h6><ul class='list'>{#list}<li class='item'>{.}</li>{/list}</ul></div>", "intro"));

</script>

Setup

window.sharedVariables = {
        header: "Header",
        header2: "Header2",
        header3: "Header3",
        header4: "Header4",
        header5: "Header5",
        header6: "Header6",
        list: ['10000000', '2', '3', '4', '5', '6', '7', '8', '9', '10']
      };

Teardown


    $("#target").html('');
  

Test runner

Ready to run.

Testing in
TestOps/sec
DOM - Mustache.js Template
sharedVariables.template = 'Mustache.js';
$("#target").html(Mustache.to_html(mustacheTemplate, sharedVariables));
++sharedVariables.list[0];
ready
DOM - Twitter's Hogan.js
sharedVariables.template = 'Hogan.js';
$("#target").html(hoganTemplate.render(sharedVariables));
++sharedVariables.list[0];
ready
DOM - Handlebars.js
sharedVariables.template = 'Handlebars.js';
$("#target").html(handlebarsTemplate(sharedVariables));
++sharedVariables.list[0];
ready
DOM - jsRender
sharedVariables.template = 'jsRender';
$("#target").html($.render.jsRenderTemplate(sharedVariables));
++sharedVariables.list[0];
ready
DOM - dust.js
// async test
sharedVariables.template = 'dust.js';
dust.render("intro", sharedVariables, function(err, out) {
  $("#target").html(out);
  deferred.resolve();
});
++sharedVariables.list[0];
ready
DOM - template.js
sharedVariables.template = 'template.js';
$("#target").html(template(templateTemplate, sharedVariables));
++sharedVariables.list[0];
ready
DOM - Mustache.js Compiled Template
sharedVariables.template = 'Mustache.js';
$("#target").html(mustacheCompiledTemplate(sharedVariables));
++sharedVariables.list[0];
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.