Do you have experience with a Javascript templating engine, one that is stable, easy to use and has good performance?

I need to do apply the same template many times for different data. I prefer to download the template itself once (and have it cached) rather than processing the template on the server. Also, this way the template itself would be a static resource more easily cached in the server side too.

link|improve this question

feedback

closed as not constructive by casperOne Feb 15 at 0:55

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

26 Answers

up vote 30 down vote accepted

I've been looking at John Resig's JavaScript Micro Templating thingie, and it looks very interesting. Looks like it's simple, does the job, and is very easy to use.

As far as caching is concerned, it's just a matter of setting the right response headers in your web server, no?

link|improve this answer
"it's just a matter of setting the right response headers in your web server, no?" We have "global" tags like {{ContactTelephoneNo}} which are substituted ServerSide (and cached) rather than sending the data to Client for template-merge. Cached Template marked stale when ContactTelephoneNo changes – Kristen Feb 16 '09 at 12:45
Do you mean that you want to ensure that the result of a template substitution should be retained in cache until such time that values in the substitution change? That should be a fairly straightforward thing to bolt on to Resig's templating engine. – Rakesh Pai Feb 18 '09 at 15:38
feedback

+1 for Resig's Micro templating thingy, as mentioned by Rakesh Pai, but thought I'd mention another micro template language on the block: mustache.js

link|improve this answer
feedback

I found PURE initally appealing, but hard to get into, inflexible and a wee bit too contrived.

jQote is clean, simple, powerful, recently updated, and apparently, quick.

link|improve this answer
2  
Ok for the "hard to get into", as it is a very different approach than other templating engines. But what do you mean by inflexible and too contrived? – Mic Sep 27 '10 at 20:46
of course there is a plus and min to all sides, but I prefer others over Pure due to the fact that you write more javascript in pure... having to add a new array of selectors bound to their content i'd like it when you enter your variables in the template itself, and the engine should replace them with the values. but thats my personal preference. – Sander Sep 6 '11 at 20:16
jQuote looks great. – jm3 Dec 28 '11 at 2:27
feedback

There's a really nice one called EJS ( http://embeddedjs.com/ ) that is packaged with JavaScriptMVC or you can download it as a standalone plugin.

link|improve this answer
feedback

I tried lot of JS templating and found that handlebars is good. http://tryhandlebarsjs.com/

link|improve this answer
1  
+1 since I created that site – james Jun 11 '11 at 2:50
1  
+1 for Mustache & precompilation support. – SalmanPK Apr 1 at 7:50
feedback

Underscore.js has a templating engine you should check out.

An interesting benchmark from jqote shows underscore is very fast.

link|improve this answer
feedback

Check out PURE javascript templating engine. It's quite easy to use and reasonably light weight.

link|improve this answer
2  
PURE seems very different -- not really a template language at all, but more like a javascript library for doing DOM manipulation based on JSON data. The "templates" are actually just HTML with in-line javascript. This may or may not be a good thing -- depending what you want. – Nick Perkins Aug 9 '11 at 15:40
@Nick, agreed, I think Pure doesn't align with the typical definition of a templating engine. Also, it obscures HTML, which some may not be a fan of. – Peder Rice Aug 11 '11 at 15:33
@Nick & Peder There is no inline Javascript in the HTML with PURE and what do you mean by "it obscures HTML", as the HTML remains totally clean of any double bracket tags? – Mic Jan 5 at 23:02
feedback

mustache.js is another great micro templating engine and has been ported to many languages allowing you to render on the server-side as well as client-side using the same templates.

link|improve this answer
1  
The ability to render the same template on the client (javascript) or server (java, c#, php, node.js, etc) makes mustache a great choice. – scotts Feb 1 at 18:47
feedback

Read this blog.It mention's about dust.js which is being used by linkedin.

link|improve this answer
feedback

I like jQote. http://aefxx.com/jquery-plugins/jqote2/

Check out the benchmarks

link|improve this answer
feedback

Trimpath

link|improve this answer
feedback

Microsoft has proposed a very nice jQuery templating engine:

http://wiki.github.com/nje/jquery/jquery-templates-proposal

link|improve this answer
Which is now a semi-official part of JQuery. It's not included in the main download, but it's documented on the JQuery website. – Daniel Winterstein Jun 14 '11 at 19:45
1  
Looks like it will remain in semi-official status indefinitely. blog.jquery.com/2011/04/16/… – Danny C Jul 6 '11 at 8:02
feedback

JAML

link|improve this answer
feedback

jSmart is a port of the PHP Smarty Template Engine to Javascript

link|improve this answer
feedback

JQote2 (http://aefxx.com/api/jqote2-reference/#jqoteapp) is definitely the fastest. See http://lbolla.info/blog/2011/05/23/javascript-templating-benchmark/ and http://jsperf.com/dom-vs-innerhtml-based-templating/32

link|improve this answer
feedback

I've also been looking into various JS template engines. They're difficult to compare as there're many parameters at play (speed, compatibility, support, features..). It's also interesting that several of these projects were active in 2009 / 2010, but then nothing (say, Trimpath, jQote2, for couple of examples). I'm not saying software should be constantly updated, but in the fast moving world of web even a year without a single update makes you worry the project may have been abandoned, and hence consider twice whether it's a good idea to start using it a new project at this point.

That said, jQote2 is very fast and seems to work well. Also TempoJS looks interesting (and it's being actively developed)!

Edit: Because jQuery tmpl is deprecated ("NO LONGER IN ACTIVE DEVELOPMENT OR MAINTENANCE. Issues remain open but are not being worked"), I would not start a new project using it; it is not likely that it will ever become the 'official' template engine for jQuery, and the fact that open issues are not going to be addressed is troublesome. jQuery tmpl's successor, jsViews may be worth a look (see a presentation and comparison). It may be slated to eventually become part of jQuery UI (although I won't believe it until I see it after all the wrangling with tmpl. ;)

Note that if you're working with a JavaScript framework such as Backbone.js, you would want to use jsView's rendering engine, jsRender (which is mostly synonymous with jQuery tmpl). The "interactive data-driven views" functionality of jsViews is in such cases already provided by the framework, and as such it would be redundant. Fortunately, jsViews and jsRender are provided in separate libraries, so it is easy to use jsRender only.

link|improve this answer
feedback

Pure Javascript with JSP-like syntax:

http://blog.markturansky.com/BetterJavascriptTemplates.html

link|improve this answer
1  
Hey Mark, I love what you did. I put your code on github and modified it to accept a string as an input and return the parsed output: github.com/superjoe30/jst-parser You can use a HEREDOC in javascript like this: mook.wordpress.com/2005/10/30/multi-line-strings-in-javascript I'm working on a script that helps you use this in Django. – superjoe30 Apr 22 '10 at 5:09
feedback

If you are operating in a Java/JEE environment, you might want to check out dctemplate

link|improve this answer
feedback

Tenjin brags about being fast, although it looks to be implemented the same way Mark's is. Also documentation is in broken English and he thinks you'll want to hook up the javascript to Rhino or Java or something.

Mark's solution is great, but I disagree about the API. I modified it and put it on github. I came up with a way to integrate it into Django using preparsed javascript. I documented everything but haven't posted it online. If anyone pokes me I'll write an article on how to set it up.

link|improve this answer
feedback

Yajet is a new one, spotting a syntax different from anything we've seen before. :-) It compiles the templates and it's blazing fast. It's browser and library-agnostic; there is a small jQuery wrapper for people who can't live without jQuery, but the engine itself is independent and can run in Rhino or V8 too.

It supports many directives that allow conditionals, loops, define reusable template components etc.

link|improve this answer
feedback

Last week I've designed KiTE template engine: http://code.google.com/p/kite/ that uses pretty much {{mustache}} template definition language (TDL) and is faster than other engines in the group (mustache, jQuery.template(), etc.).

Here is an article about template engines http://www.terrainformatica.com/2011/03/the-kite-template-engine-for-javascript/ . There is a link in it for comparison speed tests.

link|improve this answer
feedback

BabaJS is a fairly fast yet comprehensive template manager.

It was designed to not only produce HTML from template + data but also to manage the template, fetch them from a remote server when needed. Here are some great useful features that make BabaJS more of a template manager than just an engine:

  • PHP Like – the syntaxt and the behavior of the template is similar to PHP so no need to learn something new. You can define variables in one template and use them anywhere in the templates or even in sub-templates.
  • Sub Templating – you can call to render a template from another templates, so it makes it easier to devide templates into logic units, and use them where needed.
  • Dependency Management – you can tell BabaJS if a template has dependencies, like JS or CSS files, and BabaJS will fetch these dependencies before rendering the template, only if needed.
  • Fast – BabaJS compiles the templates in order to achive fast execution.
  • Text Based – BabaJS is doing text manipulation and doesn‘t work on the DOM elements, thus allowing it to work on Node.JS as well.
  • No Framework Dependencies – you can use BabaJS with any framework you are already using, BabaJS is written using raw Javascript.
  • Formatting Flags – you can specify formatting flags to control the way the final output of BabaJS is being formatted. BabaJS allows you to attach a hook to format the final output before it is passed back. BabaJS has some predefined flags to output secure HTML (i.e escaping some HTML tags).
link|improve this answer
feedback

Take a look at jQuery plugin vkTemplate which is built on John Resig's micro-template engin.

http://www.eslinstructor.net/vktemplate/

It uses AJAX to get template and accepts data as a json string, json object or url.

Ones loaded, template is saved in cache. Callback function is optional. You can easily build

  • loops
  • coditions
  • nested templates
  • conditionally nesting
  • and even apply Client Side Include technique (similar to Server Side Include)

and it's only 1.5k

link|improve this answer
feedback

Please let me introduce another template engine I have recently implemented.

I am a big fan of js template engines. I used jQuery templates, jQuote, Mustache and PURE. I like them as they really help, but I want something that can help managing the templates more easily. I then spent some time develop Beard to share with the community.

Points that I think Beard can help:

  1. After simple call of Beard.load(), the templates will be automatically compiled and organised in a tree structure.
  2. It supports nested sub-templates
  3. You can create template references
  4. Utility functions can be called easily
  5. With the help of jQuery, you can bind data to dom element
  6. You can define different arguments for each template
  7. You can define your own template syntax
  8. Asynchronously loading the templates from server
  9. In advanced usage, you can have dom elements and data bound to Beard Node, and create Beard Slot object to contain and manipulate nodes.

If you think the points mentioned interesting, give it a try. http://jspopisno1.github.com/Beard

link|improve this answer
feedback

Thought I might add an update to this question as the world of javascript templates is changing quite a bit these days.

the jQuery Templates project has be put on hold. There is talk about it becoming part of the jQuery UI library but that is yet to be seen.

jsRender is a good alternative but is actively being developed and changing on a weekly basis

json2html is another good alternative that uses JSON transforms instead of HTML markup for templates. well worth checking out.

link|improve this answer
feedback

I looked at a few of these solutions, and though nice ideas, I highly recommend not to introduce another library/framework unless you really have to.

I ended up using a simple (yet effective) solution, that may fit your needs too:

templates = {
     contact_details : function( data ){
                             return "<p>" +
                                    "Name:  " + data.name + "<br>" +
                                    "Phone: " + data.phone + "<br>" +
                                    "email: " + data.email " +
                                    "</p>";
}

and then you simply use (with jQuery) as:

$(this).append( templates.contact_details(p) );

or for adding multiple instances (using jQuery's each):

var output = '';
$.each( persons, function(p){
           output+= templates.contact_details(p);
});

you get:
1. Total control of what's happening (no "black box") to debug later.
2. if you have decent IDE - since all templates are under one object you get code completion of your available templates!

quick, and simple.

link|improve this answer
Please don't do this. A template scheme should, at a minimum, help escape values for you. Otherwise you're just asking for XSS vulnerabilities. – Mike Samuel Sep 25 '10 at 0:30
the guy was asking for a library, of which there are a billion, and using them is widely considered to be vastly superior to doing this kind of thing. -1 – Matt Briggs Jan 15 '11 at 21:05
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.