egoist / deravel

MVC web application framework. Like Laravel but for Deno.
89 stars 1 forks source link

Template engine #3

Open egoist opened 4 years ago

egoist commented 4 years ago

This one should be trivial, I think we can reuse nunjucks from Node.js?

IniZio commented 4 years ago

So will need to be able to install nodejs dependencies in deno or mirror the functions?

egoist commented 4 years ago

@IniZio template engine usually doesn't rely on Nodejs-specific modules that much, we can bundle one (like nunjucks) into a single file and convert it to es module.

ecreeth commented 4 years ago

Deno support JSX. What better than that 😄

egoist commented 4 years ago

@ecreeth yeah almost forgot that 😂 though I think the performance of a template engine would be slightly better.