2 مستودعات
Renders HTML on the server and sends only the changed parts to the client over a persistent WebSocket connection.
Distinct from Server-Side Rendering: Distinct from Server-Side Rendering: focuses on sending only changed HTML diffs rather than full page markup.
Explore 2 awesome GitHub repositories matching web development · Differential Updates. Refine with filters or upvote what's useful.
Phoenix LiveView is an Elixir-based framework that renders HTML on the server and sends only the changed parts to the client over a persistent WebSocket connection. It operates on a process-per-connection model, where each user session runs in its own isolated Elixir process for fault tolerance and independent state management, and includes a LongPolling fallback transport for environments where WebSocket connections are unavailable. The framework provides server-side rendered diffs and WebSocket-based state synchronization to maintain a continuous bidirectional channel between server and cli
Renders HTML on the server and sends only changed parts to the client over WebSocket.
SwiftWebUI is a server-side UI framework and declarative web library that allows for the creation of web interfaces using a syntax based on the SwiftUI pattern. It functions as a server-driven system where the interface structure and state are managed on the server and rendered within a web browser. The framework enables the development of web interfaces through a declarative domain specific language that mirrors native Apple platform interface patterns. It maintains a live connection between the server and browser to handle real-time state synchronization and user interactivity. The system
Sends only changed HTML fragments to the client over a persistent WebSocket connection to avoid full page reloads.