$ npm install jstransformer-es6-template-stringses6-template-strings support for JSTransformers.
npm install jstransformer-es6-template-strings
var transform = require('jstransformer')(require('jstransformer-es6-template-strings'));
var template = 'Hello, ${name}!';
transform.render(template, { name: 'World!' } ).body;
//=> 'Hello, World!'
MIT