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