npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jstl

v0.1.0

Published

JavaScript as a templating language

Downloads

39

Readme

jstpl - a JavaScript templating library

jstpl is a library for templating for JavaScript, using JavaScript.

Rather than trying to design a new language, jstpl allows you to write JavaScript code for the control logic of your templates.

jstpl takes in a template, and produces a function. This function includes JavaScript code from the template, so it is basically equivalent to eval() - DO NOT RUN TEMPLATES YOU DO NOT TRUST.

Example code:

<div class="this-user">
    <div class="name"><?fullname?></div>
    <div class="security-status">
        <?js if (window.location.substring(0, 5) == "https") { ?>
        <div class="security-status-encrypted">Encrypted</div>
        <?js } else { ?>
        <div class="security-status-unencrypted">Unencrypted</div>
        <?js } ?>
    </div>
</div>

Everywhere <?js is used, <? or <% can be used instead (and %> can be used in place of ?>).

Another templating library?

Yeah, I know there are already quite a few. But they generally suffer from the following problems:

  • New syntax - the more complex ones define their own syntax for if/foreach/etc.
  • Not customisable - they give you a set of pre-defined output filters (HTML entities, URI encoding, etc).

jstpl tries to avoid these, by piggybacking on the JavaScript language while providing a simple base for extending behaviour.

Writing templates

There are two different ways to use the special tags in a template.

1) No space: <?variable?>, <?jsvariable?> or <%variable%>

If there is no space following the <? (or <?js), the block is substituted with a value. By default, this is taken as a property of the first function argument (HTML-escaped).

Example template:

<div>
    <%name%> likes <%food%>.
</div>

Calling the function:

var obj = {name: "Everybody", food: "chocolate"};
var html = myTemplate(obj);

Result:

<div>
    Everybody likes chocolate.
</div>

Note that if your variable name begins with "js", you will need to either use the long form (<?jsjsvar?>) or the percent form (<%jsvar%>)

2) With space: <? ... ?>, <?js ... ?> or <% ... %>

If there is whitespace following the opening <?/<?js/<%, the block is run as JS code.

The special function echo() is defined, which contribues to the output of the function.

Example template:

<div>
    Current URI: <?js
        echo(window.location.toString());
    ?>
</div>

Result:

<div>
    Current URI: http://example.com/
</div>

Loading templates

Templates can be loaded either as strings (jstpl.create(str)) or they can be loaded from C-style comments in your JS file, assuming that file is accessible via AJAX.

The syntax for loading from comments is to start your comment /* Template: <identifier> followed by a newline. To load all templates in a file, call jstpl.loadTemplates() from that file.

Example:

template = jstpl.create('<div><?title?></div>').compile();

/* Template: example-template
<div>
    <?title?>
</div>
*/
template2 = jstpl.getTemplate('example-template').compile();

Customising

Behaviour can be modified either by passing arguments into template.compile(), or by changing properties in the jstpl object.

The "no spaces" behaviour

You can completely customise the behaviour of the "no spaces" form.

The way you do this is by passing in a function to t.compile() of the following form:

t.compile(function (variableName) {
    return function (arg0, arg1, ...) {
        ...
    }
});

You might need to look at that twice - you supply a compile-time function which returns a function that is called at render time.

For example, a simple example might be:

var t = jstpl.create('Name: <%name%>');
var f = t.compile(function (variableName) {
    return function (value) {
        return value[variableName].toString();
    }
});

var value = {name: "Mary"};
var result = f(value); // returns: "Name: Mary"

The default function (that t.compile() uses if you don't supply your own) is available at jstpl.defaultFunction. It looks very much like the above, except it HTML entity-encodes the output.

You can change this default by altering jstpl.defaultFunction.

"Header code"

You can also provide some JavaScript code to sit at the top of the compiled template. It's completely equivalent to adding the same code to the top of the template.

var f = t.compile(null, "var value = arguments[0];");

A good use for this might be to alias function arguments (as in the example) - that makes the value variable available for use within your templates, so you don't have to pepper your code with arguments[N].

The default "header code" is actually the one from above example - however, you can change this by altering jstpl.defaultHeaderCode.

Wait - how does it get the templates from JavaScript comments?

The secret is that when jstpl.getTemplate() is called, it calls through to jstpl.loadTemplates(). This function figures out what source file is running (it should be the last <script> in the document), fetches it via AJAX and inspects it for comments.

If for some reason you aren't calling jstpl.getTemplate() when the script loads (I can't think why you would), then you should call jstpl.loadTemplates() manually.