mac@programming.dev to Programmer Humor@programming.dev · 1 year agoYesprogramming.devimagemessage-square69fedilinkarrow-up1701arrow-down129
arrow-up1672arrow-down1imageYesprogramming.devmac@programming.dev to Programmer Humor@programming.dev · 1 year agomessage-square69fedilink
minus-squareSchmeckinger@feddit.delinkfedilinkarrow-up31arrow-down2·edit-21 year agoThere are a lot of solutions like that in rust. You basically compile the template into your code.
minus-squarevoxel@sopuli.xyzlinkfedilinkarrow-up9arrow-down2·1 year agobut not the whole fucking prerendered static page
minus-squaresebsch@discuss.tchncs.delinkfedilinkarrow-up7arrow-down1·1 year 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-squareSchmeckinger@feddit.delinkfedilinkarrow-up2arrow-down1·edit-21 year 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.
but not the whole fucking prerendered static page
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.