Simple template string based templating for Bare.
[!CAUTION] Templates support arbitrary JavaScript execution and must only be rendered from trusted input.
npm i bare-tpl
const tpl = require('bare-tpl')
tpl.render('${hello} world!', { hello: 'Howdy' })
// Howdy world!
Apache-2.0