Y
Hacker News
new
|
ask
|
show
|
jobs
by
VWWHFSfQ
1172 days ago
I observe the exact opposite. Server rendered UIs are far more often times up to date than client rendered apps.
1 comments
amrocha
1172 days ago
I can't think of a single website that's real time and server rendered
link
UlisesAC4
1171 days ago
I do not have examples with me. But anything built with Elixir Liveview will be server rendered and will also be real time, with some gotchas though.
https://github.com/phoenixframework/phoenix_live_view
link
jeremyjh
1171 days ago
Its not exactly server rendered, though. After the first page view all the server is rendering are json graphs of dom diffs to be applied by the client application. If you use the routing features then technically its an SPA.
link