0.1.5 • Published 10 years ago

renderer v0.1.5

Weekly downloads
29
License
MIT
Repository
github
Last release
10 years ago

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