Mustache JS engine rumble: Mustache.js vs Handlebars.js vs Hogan.js vs templayed.js
JavaScript performance comparison
Info
Compared Mustache.js, Handlebars.js, Hogan.js and templayed.js.
Preparation code
<script src="https://raw.github.com/janl/mustache.js/master/mustache.js">
</script>
<script src="http://cloud.github.com/downloads/wycats/handlebars.js/handlebars-1.0.rc.1.js">
</script>
<script src="https://raw.github.com/twitter/hogan.js/master/web/builds/2.0.0/hogan-2.0.0.min.js">
</script>
<script src="https://raw.github.com/archan937/templayed.js/master/src/templayed.js">
</script>
<script>
Benchmark.prototype.setup = function() {
var tests = [{
template: "<p>My name is {{name}}!</p>",
variables: {
name: "Paul Engel"
}
}, {
template: "<p>My name is {{name}}!{{!name}}</p>",
variables: {
name: "Paul Engel"
}
}, {
template: "<p>{{html}} {{&html}}</p>",
variables: {
html: "<strong>Paul Engel</strong>"
}
}, {
template: "<p>{{html}} {{{html}}}</p>",
variables: {
html: "<strong>Paul Engel</strong>"
}
}, {
template: "<p>This is shown!{{#show}} Psst, this is never shown{{/show}}</p>",
variables: {}
}, {
template: "<p>This is shown!{{#show}} Psst, this is never shown{{/show}}</p>",
variables: {
show: false
}
}, {
template: "<p>This is shown!{{#shown}} And, this is also shown{{/shown}}</p>",
variables: {
shown: true
}
}, {
template: "<p>My name is {{person.first_name}} {{person.last_name}}!</p>",
variables: {
person: {
first_name: "Paul",
last_name: "Engel"
}
}
}, {
template: "{{name}}<ul>{{#names}}<li>{{name}}</li>{{/names}}</ul>{{^names}}Sorry, no people to list!{{/names}}",
variables: {
names: []
}
}, {
template: "<p>{{name}}</p><ul>{{#names}}<li>{{name}}</li>{{/names}}</ul>{{^names}}Sorry, no people to list!{{/names}}<p>{{name}}</p>",
variables: {
name: "Chunk Norris",
names: [{
name: "Paul"
}, {
name: "Engel"
}]
}
}, {
template: "<ul>{{#names}}<li>{{.}}{{foo}}</li>{{/names}}</ul>",
variables: {
names: ["Paul", "Engel"]
}
}, {
template: "<ul>{{#names}}<li>{{fullName}}</li>{{/names}}</ul>",
variables: {
names: [{
firstName: "Paul",
lastName: "Engel"
}, {
firstName: "Chunk",
lastName: "Norris"
}],
fullName: function() {
return this.lastName + ", " + this.firstName;
}
}
}];
var compiled = {
"Mustache.js": [],
"Handlebars.js": [],
"Hogan.js": [],
"templayed.js": []
};
for (var i = 0; i < tests.length; i++) {
var template = tests[i].template;
compiled["Mustache.js"].push(template.replace(/\.\.\//g, ""));
compiled["Handlebars.js"].push(Handlebars.compile(template));
compiled["Hogan.js"].push(Hogan.compile(template.replace(/\.\.\//g, "")));
compiled["templayed.js"].push(templayed(template));
}
};
</script>
Preparation code output
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Mustache.js |
|
pending… |
Handlebars.js |
|
pending… |
Hogan.js |
|
pending… |
templayed.js |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published by Paul Engel
- Revision 3: published by Paul Engel and last updated
- Revision 6: published
- Revision 7: published by Paul Engel
- Revision 10: published
- Revision 11: published
- Revision 12: published
- Revision 13: published
- Revision 16: published
- Revision 18: published
- Revision 19: published by Jú Gonçalves
- Revision 20: published and last updated
- Revision 21: published
- Revision 22: published
- Revision 24: published
- Revision 26: published
- Revision 27: published by rhyzx
- Revision 30: published by rhyzx
0 comments