npm.io
0.1.5 • Published 12 years ago

renderer

Licence
MIT
Version
0.1.5
Deps
4
Vulns
9
Weekly
0

renderer

Returns a promise with a rendered handlebars file or renders template to a file

renderer(src,[dest],data)

  renderer 'templates/foo.hbs', 'public/foo.html',
    title: 'Foobar'
    name: 'Sublime'
  .then ->
    console.log 'all done!'
  renderer 'templates/foo.hbs',
    title: 'Foobar'
    name: 'Sublime'
  .then (rendered) ->
    console.log rendered

Handlebars Helpers

readFile

Read file contents into the template

  {{readFile '/path/relative/to/hbs/file.txt'}}
stringify

JSON.stringify an object into the template

  {{{stringify someobj}}}

License

MIT