Skip to content

Instantly share code, notes, and snippets.

@tomas-stefano
Created January 13, 2013 01:26
Show Gist options
  • Save tomas-stefano/4521653 to your computer and use it in GitHub Desktop.
Save tomas-stefano/4521653 to your computer and use it in GitHub Desktop.
Play handlebars in node
$ npm install handlebars
$ node
> var Handlebars = require('handlebars');
> var template = Handlebars.compile("Hi, {{name}}");
> console.log(template({name: "Bob"}));
Hi, Bob
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment