tiny-templater
v1.0.2
Published
super-minimal templating
Downloads
60
Readme
tiny-templater
simple templating for simple needs
usage
var templater = require('tiny-templater')
, tpl = templater('hey, {{ name }}, {{ phrases.question }}?')
console.log(tpl({name: 'buddy', phrases: {question: 'what\'s the word?'}}))
// "hey, buddy, what's the word?"
notes
attempting to reference an undefined variable from within your template will render as ''.
license
MIT