Good question, My framework is with specific purpose, it's to build a quick REST API server, so I don't have any plan to add any views or renderer functionality, but still you can set content type as text/html in router response.
I've only just read myself into the docs. Deno is a scripting environment, so you can feed it scripts and let it execute those. It's not meant to be a backend for serve a UI. There are other tools for that purpose.
Quick silly question from someone with 0 Deno knowledge: how does one connect this (or any generic Deno app) to any kind of UI/view library?
Good question, My framework is with specific purpose, it's to build a quick REST API server, so I don't have any plan to add any views or renderer functionality, but still you can set content type as
text/htmlin router response.I've only just read myself into the docs. Deno is a scripting environment, so you can feed it scripts and let it execute those. It's not meant to
be a backend forserve a UI. There are other tools for that purpose.You can serve a UI with a templating engine and web server, like: github.com/NMathar/deno-express