0.2.0 • Published 10 years ago

mtmpl v0.2.0

Weekly downloads
3
License
-
Repository
github
Last release
10 years ago

node-modules-mtmpl

Simple JavaScript templating for NodeJS

Based heavily on John Resig's micro-templating.

Installation

$ npm install mtmpl

Usage

var mtmpl = require("mtmpl");

// 'Hello, my name is John!'
var html = mtmpl.mtmpl("Hello, my name is <%=name%>!",{name:"John"});

// A reusable template function.
var tmplFunc = mtmpl.mtmpl("Hello, my name is <%=name%>!");

// 'Hello, my name is Bob!'
var html1 = tmplFunc({name:"Bob"});

// 'Hello, my name is Jim!'
var html2 = tmplFunc({name:"Jim"})

// A reusable template function as a string.
var precompiled = mtmpl.precompile("Hello, my name is <%=name%>!");

Tests Build Status

$ npm test