twitter / hogan.js

A compiler for the Mustache templating language
http://twitter.github.io/hogan.js
Apache License 2.0
5.14k stars 431 forks source link

Cannot read property 'render' of undefined #260

Closed lgupta54 closed 6 years ago

lgupta54 commented 6 years ago

following is my code:

let template = fs.readFileSync('../api/mailTemplate/emailVerification.hjs', 'utf-8');

let compiledTemplate = Hogan.compile(template);

compiledTemplate.render({link: link, name:name})

Error: TypeError: Cannot read property 'render' of undefined

Above code is working fine in debug mode of app, but gives the error in run mode.

Node.js