Skip to content

Instantly share code, notes, and snippets.

@minmaxdata
Forked from odino/template.js
Created August 14, 2019 01:39
Show Gist options
  • Save minmaxdata/63420b06caf3a1d5acc298f2fa5a873d to your computer and use it in GitHub Desktop.
Save minmaxdata/63420b06caf3a1d5acc298f2fa5a873d to your computer and use it in GitHub Desktop.
app.get("/my-view", async (req, res) => {
res.send(render("my-view", {data: await db.getData()}))
})
function render(view, ctx = {}) {
return _.template(fs.readFileSync(`./views/${view}.html`))(ctx)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment