search and replace tokens from a source file, writing to a new file
npm install @txm/tokeniservar config = {
'tokens': { 'a': 'A', 'b': 'B' },
'src_file': 'index.template',
'dst_file': 'index.html'
}
tokeniser.tokenise(config, function (err) {
console.log('rock!')
})