5 ms·
Much of your business logic can live in the backend, and it keeps your frontend really tiny. The idea is to generate HTML on the backend, instead of using a fro
by wrapperup 3y ago
Much of your business logic can live in the backend, and it keeps your frontend really tiny. The idea is to generate HTML on the backend, instead of using a front-end framework to generate HTML on the client from an API call.
You can also do the same in Node if you want to, I currently have a TS website that is mostly templated HTML in production (without htmx). Htmx would be perfect for that site.
- CharlesW 3y ago> Much of your business logic can live in the backend, and it keeps your frontend really tiny. Ah, so "with htmx you can use any language" is true because its users are no longer using a programming language per se for the front-end, but instead are defining logic with htmx's DSL?
- rakoo 3y agohtmx extends html to generalize a behaviour that already exists, so it's as much a DSL as html itself is a DSL