0.0.4 • Published 11 years ago

hbsc v0.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
11 years ago

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