Mac@programming.dev to Programmer Humor@programming.dev · 2 年前Yesprogramming.devimagemessage-square82fedilinkarrow-up1790arrow-down131
arrow-up1759arrow-down1imageYesprogramming.devMac@programming.dev to Programmer Humor@programming.dev · 2 年前message-square82fedilink
minus-squareSchmeckinger@feddit.delinkfedilinkarrow-up32arrow-down2·edit-22 年前There are a lot of solutions like that in rust. You basically compile the template into your code.
minus-squarevoxel@sopuli.xyzlinkfedilinkarrow-up9arrow-down1·edit-22 年前yeah, templates can be parsed at compile time but these frameworks are not embeeding whole fucking prerendered static pages/assets
minus-squaresebsch@discuss.tchncs.delinkfedilinkarrow-up8arrow-down1·2 年前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
minus-squareSchmeckinger@feddit.delinkfedilinkarrow-up3arrow-down1·edit-22 年前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.
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.