Has anyone done a ubiquitous web framework in Rust (or maybe actually Go) that is similar to Next.js in that it runs the same code (compiled to WebAssembly) on client and server?
1
Replying to @frabcus
If you find a good answer for Rust, I'd be interested. I've done some basic wasm UIs using Rust, and obviously done some purely server-side stuff; but never found anything which combined the two.

May 23, 2022 ยท 10:32 AM UTC

2
2
Replying to @dsilverstone
For the basic client-side stuff did you use Smithy or something else?
1
I was using yew, though the UIs I made were pretty simplistic. When I did just server-side stuff in Rust, I ended up doing a React frontend, though that was icky.
1
2