Package Exports
- rendy
Readme
Rendy

Simple template engine compatible with handlebars and mustache.
Install
npm i rendy
How to use?
const rendy = require('rendy');
const tmpl = 'hello {{ who }}';
const who = 'world';
rendy(tmpl, {
who
});
// returns
'hello world'
License
MIT