Mac to Programmer [email protected] • 2 years agoYesprogramming.devimagemessage-square87fedilinkarrow-up1812
arrow-up1812imageYesprogramming.devMac to Programmer [email protected] • 2 years agomessage-square87fedilink
minus-square@[email protected]linkfedilink32•edit-22 years agoThere are a lot of solutions like that in rust. You basically compile the template into your code.
minus-squarevoxellinkfedilink9•edit-22 years agoyeah, templates can be parsed at compile time but these frameworks are not embeeding whole fucking prerendered static pages/assets
minus-square@[email protected]linkfedilink8•2 years agoThey are nowadays. Compiling assets and static data into rust and deliver virtual DOM via websocket to the browser is the new cool kid in the corner. Have a look at dioxus
minus-square@[email protected]linkfedilink3•edit-22 years agoCompiling all assets into the binary is trivial in rust. When I have a small web server that generates everything in code I usually compile the favicon into the binary.
There are a lot of solutions like that in rust. You basically compile the template into your code.
yeah, templates can be parsed at compile time but these frameworks are not embeeding whole fucking prerendered static pages/assets
They are nowadays. Compiling assets and static data into rust and deliver virtual DOM via websocket to the browser is the new cool kid in the corner.
Have a look at dioxus
Compiling all assets into the binary is trivial in rust. When I have a small web server that generates everything in code I usually compile the favicon into the binary.