Basic Go text/template parser and renderer. No dependencies.
Install the package from the NPM registry:
npm install go-text-template
import { Template } from 'go-text-template'; // or require
const template = new Template("optional name");
const output = template.execute('Hello {{.name}}', { name: 'World' });
console.log(output); // Hello World