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
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.
2
2
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
I think wasm is already changing an awful lot of how the ecosystem works. Computation at least is now being offloaded to wasm in a lot of cases.
May 23, 2022 ยท 11:10 AM UTC
1
1

