LiveView is just updating the HTML DOM through a websocket. Instead of using a conventional API, everything happens through the websocket.
This way you can write server side templates to update the client automatically on server side state changes without needing to use an API on the client to fetch the state or even manipulate the state.
This way you can write server side templates to update the client automatically on server side state changes without needing to use an API on the client to fetch the state or even manipulate the state.