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

tag-template

v0.1.0

Published

A utility for template parsing and rendering. Implementations for Smarty, Handlebars and UBB. Easy to extend.

Downloads

7

Readme

tag-template.js

NPM version npm Travis

An NPM for template parsing and rendering supporting Smarty(the syntax, not all of php), Handlebars and UBB. Easy to extend to make your own tag parser.

Usage as a Base Class

First include the module:

var TagTemplate = require('tag-template');

then, extend the object using Classy (this will likely switch to prime in the future):

var AwesomeTemplate = new Class({
    Extends : TagTemplate,
    strict : true,
    initialize: function(template){
        this.parent(template, {
            environments : []
        });
    },
    renderNode : function(node){
        //handle an individual node
    },
    render : function(data, callback){
        this.parent(data, fn.bind(function(rendered){
            if(this.parser.text != ''){
                rendered += this.parser.text;
                this.parser.text = ''
            }
            callback(rendered);
        }, this));
    }
});

In order to actually parse things, though you'll have to describe the tags in your document, which was done above with this line:

this.parent(template, {
    environments : []
});

The actual tag descriptions are simply objects, so lets's assume we want to parse some macros that look like:

(tagName one two three)

(tagName one="1" two="2" three="3")

Then we would configure the tags like:

{
    name : 'parenthetical-tag',
    sentinels : [['(', ')']],
    onParse : function(tag, parser){
        //do stuff here
    }
}

and the incoming parse would look something like:

{
    name : 'tagName',
    text : 'tagName one two three',
    parts : ['one', 'two', 'three'],
    attributes : {}
}

{
    name : 'tagName',
    text : 'tagName one="1" two="2" three="3"',
    parts : ['one="1"', 'two="2"', 'three="3"'],
    attributes : {
        one : '1',
        two : '2',
        three : '3'
    }
}

Then you just need to extend renderNode in order to output the results from a given node. check the existing implementations for further detail.

UBB

UBB Codes are an ancient mapping to allow basic markup in posts but restrict users usage of HTML, particularly popular on Forums. Check out some UBB Code docs for information.

Include it:

var UBB = require('tag-template/ubb');

Then use it:

var template = new UBB(
    '<html>\
        <head>\
            <title>[link=http://www.com.net]Awesome[/link]</title>\
        </head>\
        <body>\
            <h1>[[email protected]]mailzes[/email]</h1>\
        </body>\
    </html>'
);
template.render(function(rendered){
    //do stuff
});

Smarty

This provides basic support for Smarty template parsing without any of the standard function libraries smarty usually depends on. Through careful management of macro usage, templates may be shared... but it is unlikely an existing template will drop in without modification or extending the internal macros.

  1. value Any value can be be output in the form:

     {$var}
        

    or

     {$var.subvalue}
        
  2. if the if construct allows you to conditionally execute logic, for example:

     {if $bobMckenzieIsDirecting}
         <!--Act!-->
     {/if}
            

    it also supports else clauses:

     {if $myList.length > 0}
         <!--iterate over list-->
     {else}
         <!--show 'no data' state-->
     {/if}
  3. foreach You can iterate across a collection using the foreach macro which supports 3 attributes

    1. from : the object or array we are iterating over
    2. item : the variable name we store the current iteration's value in
    3. key : the variable name we store the current iteration's key in

    as an example:

     {foreach from="$thing" item="item" key="key"}
         <li>{$key}:{$item}</li>
     {/foreach}
  4. literal An encapsulation to prevent '{}' from attempting to parse as macros, useful for wrapping inline js or css.

Include it:

var Smarty = require('tag-template/smarty');

To actually parse a template:

var template = new Smarty(
    '<h2>{$test}</h2>\
    <ul>\
    {foreach from="$list" item="value" key="name"}\
        <li><a>{$name}</a><b>{$value}</b></li>\
    {/foreach}\
    </ul>'
);
template.render(data, function(rendered){
    //do stuff!
});

And to add a macro:

Smarty.registerMacro(<name>, function(node, template){
    //stuff
});

Handlebars

Given that this implementation currently has an incomplete set of macros, I'll hold off on documenting this just now. The main impetus is just not using generated code in a language where you define macros with functions, and also as another test for the tag parser base.

Testing

Run the tests at the project root with:

mocha

Enjoy,

-Abbey Hawk Sparrow