Skip to content

Instantly share code, notes, and snippets.

@n-at
Created May 19, 2014 08:31
Show Gist options
  • Save n-at/22000f1d920aa2ff4f0a to your computer and use it in GitHub Desktop.
Save n-at/22000f1d920aa2ff4f0a to your computer and use it in GitHub Desktop.
twig node renderer
var twig = require('twig').twig;
twig({
path: 'tpl.twig',
load: function(tpl) {
console.log(tpl.render({text: 'Hello, world'}));
},
error: function(err) {
console.log(':(');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment