I\'m using Node.js and trying to render an EJS template file. I figured out how to render strings:
var http = requ
There is a function in EJS to render files, you can just do:
ejs.renderFile(__dirname + '/template.ejs', function(err, data) { console.log(err || data); });
Source: Official EJS documentation