Is “HTML over the wire” a new buzzword for SSR or is there a difference I'm missing?
It is rendered server side, but typically the server keeps track of only what needs to change and sends as small as possible an update to dynamically update the DOM. You end up with a user experience that feels close to an SPA, but a dev experience that feels close to traditional SSR.
Re: Ask HN: What companies are embracing “HTML over the wire”?
#11Tech like LiveView (Phoenix) and LiveWire (Laravel) are great examples of this.