jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
Testing _ with 'with' disabled.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://documentcloud.github.io/underscore/underscore-min.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>
Ready to run.
Test | Ops/sec | |
---|---|---|
tpl.js |
| ready |
doT.js |
| ready |
Underscore.js Template |
| ready |
JsRender |
| ready |
Mustache.js Template |
| ready |
Juicer |
| ready |
Underscore.js Template /wo with |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.