hbsc
v0.0.4
Published
Handlebars precompiler
Downloads
4
Maintainers
Readme
hbsc
Handlebars template precompiler for express.
Designed to compile handlebars templates each time express server is started.
Usage
var hbsc = require('hbsc');
hbsc.compile({
dir: __dirname + '/templates',
outfile: __dirname + '/public/js/templates.js',
extensions: ['hbs', 'handlebars']
});
On the browser side, you should deploy the Handlebars runtime-only release. Compiled templates will be named and stored in the Handlebars object according to their file paths, e.g. Handlebars.templates['todos/show']
Hat Tip
Based off of https://github.com/jwietelmann/node-handlebars-precompiler