Hello,
I faced with issues when i have tried to use Handlebars (http://handlebarsjs.com/) in my show function. It seems it's
CommonJS compliant but following simple example fails...
function(doc, req) {
var Handlebars = require('lib/handlebars');
var source = "<div>{{user}}</div>"
var template = Handlebars.compile(source);
return template( { user:"John" } );
}
...with error:
{"error":"render_error","reason":"function raised error: (new TypeError(\"Handlebars.compile is not a function\", \"\",
4) ...
log(Handlebars) prints "Log :: {"parser":{"yy":{}}}".
So the problem is to find how to create Handlebars instance. Could somebody
advise?
Thank you