Replace all :keys in text with given options
npm install --save typographic-template
var template = require('typographic-template');
template('Hello :name!', {name: 'Ivan'}); // Hello Ivan!
With textr
var textr = require('textr');
var template = require('typographic-template');
var tf = textr({name: 'Ivan'})
.use(template);
tf('Hello :name!'); // Hello Ivan!
MIT