I have a ejs view like this
<p>
<%= user.firstName %> <%= user.lastName %>
</p>
and in my controller I want to do something like this
var html = fill('ejs-template', data);
res.send(JSON.stringify(html))
then I can use the html with data content to do something else