Skip to content

Instantly share code, notes, and snippets.

@emkay
Created April 19, 2012 20:53
Show Gist options
  • Save emkay/2424119 to your computer and use it in GitHub Desktop.
Save emkay/2424119 to your computer and use it in GitHub Desktop.
YUI Handlebars Server Side
var YUI = require('yui').YUI;
YUI().use('handlebars', function (Y) {
var template = Y.Handlebars.compile('<p>{{name}}</p>');
var html = template({ name: 'Mike'});
console.log(html);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment