webant-handler-dustjs
v4.3.0
Published
Require DustJS templates with webant
Downloads
6
Readme
node-modules-webant-handler-dustjs
Require dustjs-linkedin templates with webant
Installation
$ npm install webant-handler-dustjs
Usage
Ensure the dustjs
handler is present in your webant configuration file. For example:
{
"entry":"src/js/main.js",
"dest":"build/main.js",
"handlers":["dustjs"]
}
You may now require
dustjs files:
var tmpl = require("./path/to/template.dust");
var html = tmpl({name:"Jane Doe"});
Need access to the dust
object?
var dust = require("{dustjs/runtime}");
Tests
Ensure phantomjs is installed and in your PATH, then run:
$ npm test