handlebars-amd
v0.0.1
Published
Compiles handlebars templates into an AMD-compatible module.
Downloads
1
Readme
Handlebars AMD
Handlebars is a cool template system that allows you to precompile your templates as JavaScript for great performance. One thing that Handlebars could stand to play nicely with is AMD module loaders (like RequireJS and CloudFlareJS). This node module allows you to compile entire directories of Handlebars templates (recursively) into a named AMD module.
Installing
# For command line:
npm install -g handlebars-amd
# For Node apps:
npm install handlebars-amd
Usage
On the command line:
handlebars-amd -i ./my/templates -n 'app/templates' -m
In your web server:
require('handlebars-amd').compile(
'./my/templates', // Template directory..
'app/templates', // Resulting module name..
true // Minify!
).then(function(compiled) {
// Compiled is a string of JavaScript that contains your module!
});