Client-Side Templating

About The Author

Lars Kappert is a Dutch front-end solution architect & lead developer. He specializes in architecture, solutions, tooling, performance, and development of … More about Lars ↬

Email Newsletter

Weekly tips on front-end & UX.
Trusted by 200,000+ folks.

Although templates can be used to output any kind of text, in this article we provide examples using HTML, since that is what we want in client-side development. Let’s take a fresh look at client-side templating!

Using templates in the browser is becoming more and more widespread. Moving application logic from the server to the client, and the increasing usage of MVC-like patterns (model–view–controller) inspired templates to embrace the browser. This used to be a server-side only affair, but templates are actually very powerful and expressive in client-side development as well.

Client-side templating article image
Image Credit: Viktor Hertz

Why Would You Use It?

In general, leveraging templates is a great way to separate markup and logic in views, and to maximize code reusability and maintainability. With a syntax close to the desired output (i.e. HTML), you have a clear and fast way to get things done. Although templates can be used to output any kind of text, in this article we provide examples using HTML, since that is what we want in client-side development.

In today’s dynamic applications, the client frequently needs to update the user interface (UI). This might be done by fetching an HTML fragment from the server that can be readily inserted into the document. Yet this requires the server to support delivering such fragments (as opposed to complete pages). Moreover, as a client-side developer who is responsible for the markup, you want to have full control over your templates. No need to know anything about Smarty, Velocity, ASP, some other obscure server-side syntax or even worse: dealing with spaghetti code such as HTML containing those infamous <? or <% tags all over the place.

So let’s take a fresh look at a viable alternative: client-side templating.

First Impressions

For starters, I’d like to give a definition of the term “template”. Here is a good definition from foldoc:

“A document that contains parameters, identified by some special syntax, that are replaced by actual arguments by the template processing system.”

Let’s observe an example, and see what a basic template might look like:

<h1>{{title}}</h1>
<ul>
    {{#names}}
        <li>{{name}}</li>
    {{/names}}
</ul>

This probably looks pretty familiar if you know HTML. It contains HTML tags with some placeholders. We will replace them with some actual data. For instance with this simple object:

var data = {
    "title": "Story",
    "names": [
        {"name": "Tarzan"},
        {"name": "Jane"}
    ]
}

Combining the template and data should result in the following HTML:

<h1>Story</h1>
<ul>
    <li>Tarzan</li>
    <li>Jane</ul>
</ul>

With the template and data separated, it becomes easy to maintain the HTML. For example, changing tags or adding classes will only need changes in the template. Additionally, adding an attribute to repeating elements such as the

  • element only needs to be done once.

    Template Engine

    The syntax of the template (i.e. the format of the placeholders such as {{title}}) depends on the template engine you want to use. This engine takes care of parsing the templates, and replacing the placeholders (variables, functions, loops, etc.) with the actual data it is provided.

    Some template engines are logic-less. This doesn’t mean you can only have simple placeholders in a template, but the features are pretty limited to some intelligent tags (i.e. array iteration, conditional rendering, etc.). Other engines are more feature-rich and extensible. Without going into details here, a question to ask yourself is whether and how much logic you allow in your templates.

    Although each template engine has its own API, usually you will find methods such as render() and compile(). The render process is the creation of the end result by putting the actual data in the template. In other words, the placeholders are replaced with the actual data. And if there is any templating logic, it is executed. To compile a template means to parse it, and translate it into a JavaScript function. Any templating logic is translated into plain JavaScript, and data can be fed to the function, which concatenates all the bits and pieces together in an optimized way.

    A Mustache Example

    The production of the example above can be performed by using a template engine, e.g. mustache.js. This uses the popular Mustache templating syntax. More about them, and alternatives, later. Let’s take a look at a little JavaScript to produce some results:

    var template = '<h1>{{title}}</h1><ul>{{#names}}<li>{{name}}</li>{{/names}}</ul>';
    var data = {"title": "Story", "names": [{"name": "Tarzan"}, {"name": "Jane"}]};
    
    var result = Mustache.render(template, data);

    Now we want to show this in the page. In plain JavaScript this could be done like this:

    document.body.innerHTML = result;

    That’s all! You can try the above in your browser by placing the Mustache script before your own code:

    <script src="https://raw.github.com/janl/mustache.js/master/mustache.js"></script>

    Or, you can try this example at jsFiddle.

    Organizing Templates

    If you’re like me, you probably don’t like to have the HTML in one long string. This is hard to read, and hard to maintain. Ideally, we can put our templates in separate files so we still have all the benefits of syntax highlighting, and the ability to properly indent the lines of HTML for readability.

    But this leads to another issue. If our project contains a lot of templates, we don’t want to load all of those files separately, since this issues a lot of (Ajax) requests. This would be bad for performance.

    Scenario 1: Script Tags

    An often seen solution is to put all the templates within <script> tags with an alternative type attribute, e.g. type=“text/template” (which is ignored for rendering or parsing by the browser):

    <script id="myTemplate" type="text/x-handlebars-template">
        <h1>{{title}}</h1>
        <ul>
            {{#names}}
                <li>{{name}}</li>
            {{/names}}
        </ul>
    </script>

    This way, you can put all of your templates in the HTML document and prevent all the extra Ajax requests to those templates.

    The content of such a script tag can then be used later in your JavaScript as a template. The following code example, this time using the Handlebars templating engine and a bit of jQuery, uses the previous <script> tag:

    var template = $('#myTemplate').html();
    var compiledTemplate = Handlebars.compile(template);
    var result = compiledTemplate(data);

    You can try this example as well at jsFiddle.

    The result here is the same as in our Mustache example. Handlebars can use Mustache templates as well, so we use the same template here. There is one (important) difference though, which is that Handlebars is using an intermediate step to get the HTML result. It first compiles the template into a JavaScript function (we named it compiledTemplate here). This function is then executed using the data as its only argument, returning the final output.

    Scenario 2: Precompiled Templates

    While only one function to perform the template rendering may seem convenient, there are significant advantages to splitting up the compilation and rendering process. Most importantly, this allows for the compilation part to happen on the server-side. We can execute JavaScript on the server (e.g. using Node), and some of the templating engines support this precompilation of templates.

    Putting it all together, we can organize and serve a single JavaScript file (say, compiled.js) that contains multiple, precompiled templates. This could roughly look like this:

    var myTemplates = {
        templateA: function() { ….},
        templateB: function() { ….};
        templateC: function() { ….};
    };

    Then, in the application code we only need to populate the precompiled template with data:

    var result = myTemplates.templateB(data);

    This is generally a far better-performing approach than putting templates within <script> tags as discussed before, since the client can skip the compilation part. Depending on your application stack, this approach is not necessarily harder to accomplish, as we’ll see next.

    Node.js example

    Any template precompilation script should at least do the following:

    • read the template files,
    • compile the templates,
    • combine the resulting JavaScript functions in one or more files.

    The next basic Node.js script does all that (using the Hogan.js templating engine):

    var fs = require('fs'),
        hogan = require('hogan.js');
    
    var templateDir = './templates/',
        template,
        templateKey,
        result = 'var myTemplates = {};';
    
    fs.readdirSync(templateDir).forEach(function(templateFile) {
    
        template = fs.readFileSync(templateDir + templateFile, 'utf8');
        templateKey = templateFile.substr(0, templateFile.lastIndexOf('.'));
    
        result += 'myTemplates["'+templateKey+'"] = ';
        result += 'new Hogan.Template(' + hogan.compile(template, {asString: true}) + ');'
    
    });
    
    fs.writeFile('compiled.js', result, 'utf8');

    This reads all files in the templates/ folder, compiles the templates and writes them to compiled.js.

    Note that this is highly unoptimized code, and does not include any error handling. Still, it does the job, and shows that it doesn’t require a lot of code to precompile templates.

    Scenario 3: AMD & RequireJS

    The Asynchronous Module Definition (AMD) is gaining more and more traction. Decoupled modules are often a great way to organize an application. One of the most popular module loaders is RequireJS. In a module definition, dependencies can be specified, which will be resolved and made available to the actual module (factory).

    In the context of templates, RequireJS has a “text” plugin that allows you to specify text-based dependencies. AMD dependencies are treated as JavaScript by default, but templates are just text (e.g. HTML), so we use the plugin for that. For example:

    define(['handlebars', 'text!templates/myTemplate.html'], function(Handlebars, template) {
    
        var myModule = {
    
            render: function() {
    
                var data = {"title": "Story", "names": [{"name": "Tarzan"}, {"name": "Jane"}]};
                var compiledTemplate = Handlebars.compile(template);
                return compiledTemplate(data);
    
            }
        };
    
        return myModule;
    });

    This way, the advantage lies (only) in the ability to organize the templates in separate files. This is nice, but it needs an extra Ajax request to get the template, and it still needs to compile the template client-side. However, the extra request can be removed by using the r.js optimizer that comes with RequireJS. This resolves dependencies, and will “inline” the templates (or any dependency) into this module definition, vastly reducing the number of requests.

    The absence of a precompilation step can be solved in a couple of ways. It may come to mind to have the optimizer also precompile the templates (e.g. we could write a plugin for r.js). But that would require a change in the module definition as well, since we would be using a template string before optimization, and a template function afterwards. Yet this would not be terribly hard to deal with, either by checking for this variable type, or by abstracting away this logic (in either the plugin or the application).

    Watching Templates

    In both scenarios #2 and #3, we can do even better by treating our templates as uncompiled source files. Just like CoffeeScript, or Less or SCSS files. We can have our template files watched for changes during development, and recompile them automatically when a file is changed, i.e. just like you would compile CoffeeScript into JavaScript. This way, we’re always dealing with precompiled templates in our code, and the optimizer effortlessly inlines the precompiled templates in the build process.

    define(['templates/myTemplate.js'], function(compiledTemplate) {
    
        var myModule = {
    
            render: function() {
    
                var data = {"title": "Story", "names": [{"name": "Tarzan"}, {"name": "Jane"}]};
                return compiledTemplate(data);
    
            };
        };
    
        return myModule;
    }

    Performance Considerations

    Rendering UI updates by using client-side templates is often the way to go. Still, the best performance for the initial full page load is achieved by serving that page as a whole. This allows the browser to render the HTML as is without requiring any JavaScript parsing or extra requests for data. This might be a challenge, especially for pages that are both dynamic and require the best initial loading times possible. Then, ideally, templates are being developed and reused on the client and the server to both support the best performance and still be maintainable.

    Two questions to consider here are:

    • What part of my application is mostly dynamic, and what part requires the best possible initial loading times?
    • Do you want to move the processing to the client, or should the server do the heavy lifting?

    The answer can only be given by actually measuring different approaches. Yet by using precompiled templates, the client usually doesn’t have a very hard time rendering them on the fly. And in case you want to reuse templates on the client and server, you will find a logic-less template syntax to be the most versatile.

    Conclusion

    We have seen many strengths of client-side templating, including:

    • Application servers and APIs are best at serving just the data (i.e. JSON); client-side templates fit in perfectly.
    • HTML and JavaScript naturally match the skills of client-side developers.
    • Using templates enforces a good practice of separating presentation and logic.
    • The templates can be fully precompiled and cached, this leaves only the actual data to be refreshed from server.
    • Moving the rendering phase from server to client may positively affect performance.

    We have been looking at quite some aspects of (client-side) templating. Hopefully by now you have a better understanding of the concept, and why you would use it.

    Further Reading

    Smashing Editorial (cp, mrn)