JavaScript template language shootoff (v804)

Revision 804 of this benchmark created on


Description

Testing _ with 'with' disabled.

Preparation HTML

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://underscorejs.org/underscore.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/mustache.js/0.3.0/mustache.min.js"></script>
<script src="http://borismoore.github.io/jsrender/jsrender.js"></script>
<script src="http://olado.github.io/doT/doT.min.js"></script>
<script src="http://juicer.name/javascripts/juicer-min.js"></script>
<script>
//tpl.js v0.3.0 Test
(function (root, factory) {
    //AMD and CMD (RequireJS, OzJS, curl, SeaJS ...)
    typeof define === 'function' && define(factory);
    //Node.js and Browser global
    (typeof exports !== 'undefined' ? exports : root).tpl = factory();
}(this, function () {
    var rMatch = /<%([\s\S]+?)%>/gim,
        rId = /^#\w+$/,
        ecp = function(s){
            return s.replace(/('|\\|\r?\n)/gim, '\\$1');
        };
    function Compiler(html) {
        html = html || '';
        if (rId.test(html)) html = document.getElementById(html.substring(1)).innerHTML;
        var str = "var __='',echo=function(s){__+=s};with(_$||{}){",
            index = 0;
        
        html.replace(rMatch, function(m, $1, i, s){
            if (index !== i) str += "__+='" + ecp(s.substring(index, i)) + "';";
            if ($1.charAt(0) === '=') {
                $1 = "__+=" + $1.substring(1) + ";";
            }
            str += $1;
            index = i + m.length;
        });
        str += "__+='" + ecp(html.substring(index)) + "'}return __";
        this.render = new Function("_$", str);
    }
    
    function tpl(html, data) {
        var me = new Compiler(html);
        return data ? me.render(data) : me;
    }
    return tpl;
}));
</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.jsRender_template = "<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}}<li class='item'>{{:#data}}</li>{{/for}}</ul></div>";

window.mustache_template = "<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.underscore_template = "<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>";

window.doT_template = "<div><h1 class='header'>{{=it.header}}</h1><h2 class='header2'>{{=it.header2}}</h2><h3 class='header3'>{{=it.header3}}</h3><h4 class='header4'>{{=it.header4}}</h4><h5 class='header5'>{{=it.header5}}</h5><h6 class='header6'>{{=it.header6}}</h6><ul class='list'>{{for(var i = 0,l=it.list.length;i<l;i++) { }}<li class='item'>{{=it.list[i]}}</li>{{ } }}</ul></div>";

window.juicer_template = "<div><h1 class='header'>${sharedVariables.header}</h1><h2 class='header2'>${sharedVariables.header2}</h2><h3 class='header3'>${sharedVariables.header3}</h3><h4 class='header4'>${sharedVariables.header4}</h4><h5 class='header5'>${sharedVariables.header5}</h5><h6 class='header6'>${sharedVariables.header6}</h6><ul class='list'>{@each sharedVariables.list as it}<li class='item'>${it}</li>{{@/each}}</ul></div>";

window.tpl_template = '<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++){echo("<li class=item>"+ list[i] +"</li>");}%></ul></div>';

</script>

Test runner

Ready to run.

Testing in
TestOps/sec
tpl.js
tpl(tpl_template, sharedVariables);
ready
doT.js
doT.compile(doT_template, sharedVariables);
ready
Underscore.js Template
_.template(underscore_template)(sharedVariables);
ready
JsRender
$.templates(jsRender_template).render(sharedVariables);
ready
Mustache.js Template
Mustache.to_html(mustache_template, sharedVariables);
ready
Juicer
juicer.to_html(juicer_template, sharedVariables);
ready
Underscore.js Template /wo with
_.templateSettings.variable = 'it';
_.template(doT_template)(sharedVariables);
ready

Revisions

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