JS Template Engines Rendering (v149)

Revision 149 of this benchmark created on


Description

Preparation HTML

<script src="https://dev.sencha.com/extjs/5.1.0/ext-all.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars-v2.0.0.js"></script>
<script src="http://mustache.github.io/extras/mustache.js"></script>
<script src="http://foo123.github.io/libs/Contemplate-0.9.min.js"></script>

<!--External Template Definitions-->
<script type="text/x-contemplate" id="contemplateextTemplate"><# #>
<div><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 as $item) #><li class='item'><# $item #></li><# %endfor() #></ul></div></script>

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


  window.extjsXTemplate = new Ext.XTemplate(
"<div>",
"<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'>",
'<tpl for="list">',
"<li class='item'>{.}</li>",
"</tpl>",
"</ul></div>");

  window.mustacheTemplate = "<div><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><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'>{{#each list}}<li class='item'>{{this}}</li>{{/each}}</ul></div>");


  //Resig Template Function (modified to support ')
  function tmpl(str) {
              var strFunc =
              "var p=[];" +
                          "with(obj){p.push('" +
  
              str.replace(/[\r\t\n]/g, " ")
                 .replace(/'(?=[^#]*#>)/g, "\t")
                 .split("'").join("\\'")
                 .split("\t").join("'")
                 .replace(/<#=(.+?)#>/g, "',$1,'")
                 .split("<#").join("');")
                 .split("#>").join("p.push('")
                 + "');}return p.join('');";
  
              return new Function("obj", strFunc);
          }
  
  window.resig = tmpl("<div><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 (var i = 0, l = list.length; i < l; i++) { #><li class='item'><#= list[i] #></li><# } #></ul></div>");
  
  //Resig modified template function (no "with" block)
  function tmpl2(str) {
              var strFunc =
              "var p=[];" +
                          "p.push('" +
  
              str.replace(/[\r\t\n]/g, " ")
                 .replace(/'(?=[^#]*#>)/g, "\t")
                 .split("'").join("\\'")
                 .split("\t").join("'")
                 .replace(/<#=(.+?)#>/g, "',$1,'")
                 .split("<#").join("');")
                 .split("#>").join("p.push('")
                 + "');return p.join('');";
  
              return new Function("data", strFunc);
          }
  
  window.resig2 = tmpl2("<div><h1 class='header'><#= data.header #></h1><h2 class='header2'><#= data.header2 #></h2><h3 class='header3'><#= data.header3 #></h3><h4 class='header4'><#= data.header4 #></h4><h5 class='header5'><#= data.header5 #></h5><h6 class='header6'><#= data.header6 #></h6><ul class='list'><# for (var i = 0, l = data.list.length; i < l; i++) { #><li class='item'><#= data.list[i] #></li><# } #></ul></div>");

  //Use external template definition
  Contemplate.add({
    'test': "#contemplateextTemplate"
  });
  window.contemplateTpl = Contemplate.tpl( 'test' );

</script>

Test runner

Ready to run.

Testing in
TestOps/sec
mustache
Mustache.render( mustacheTemplate, sharedVariables );
ready
handlebars 2.0.0
handlebarsTemplate( sharedVariables );
ready
Resig Micro Templates (modified)
resig( sharedVariables );
ready
Resig Micro Templates (No "with" block)
resig2( sharedVariables );
ready
Contemplate 0.9 (compiled)
contemplateTpl.render( sharedVariables );
ready
Extjs 5.1.0 XTemplate (compiled)
extjsXTemplate.apply( sharedVariables )
ready

Revisions

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