Did you all have a look at the https://github.com/hyperfiddle/electricthing? It seems like that also lifts reactivity to a higher level much like what you describe with SolidJS
I went into a rabbit hole recently of playing around with streaming SSR with uix2. Was actually a bit surprised how easy it ended up being to get that working. Suspense and all is quite cool.
hm interesting, I think streaming SSR is one of those things that clearly delivers a better UX? With that in mind it feels like some integration between them is inevitable / imperative?
I guess it makes sense, it's been a while since I worked on something that would benefit from SSR. I'm out of the loop really.
I mean doesn’t everything benefit from SSR? 😄 largest contentful paint seems important in loads of situations
I’ve been doing some hammock time on a system where any dependencies of your React render tree would be provided via a Suspense-compatible data loader (this could be the router or an API to talk to the database) and you could easily choose different implementations for client/server. Anyways, probably this is gibberish right now but I hope to mess around with this idea some time soon.
I’m a bit skeptical about frameworks that integrate client and backend, it feels limiting, although I haven’t tried this one