|
|
|
|
|
by grishka
90 days ago
|
|
One of my projects does have a complex UI and is built with zero runtime dependencies on the front end. It doesn't require JS at all for most of its functionality. I just render as much as possible on the server and return commands like "hide the element with that ID" or "insert this HTML after element with that ID" in response to some ajax requests. Outside of some very specific interactive components, I avoid client-side rendering. |
|
SPA was mean for UI that relies on the client state mostly, not on the server data (figma and other kind of online editors).