2 repository-uri
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 este un framework UI server-side și o bibliotecă web declarativă care permite crearea de interfețe web folosind o sintaxă bazată pe tiparul SwiftUI. Funcționează ca un sistem server-driven unde structura interfeței și starea sunt gestionate pe server și randate într-un browser web. Framework-ul permite dezvoltarea de interfețelor web printr-un limbaj specific domeniului (DSL) declarativ care oglindește tiparele de interfață native ale platformelor Apple. Menține o conexiune live între server și browser pentru a gestiona sincronizarea stării în timp real și interactivitatea utilizatorului. Sistemul acoperă designul de interfețe cross-platform și gestionarea elementelor interactive, cum ar fi navigarea și controalele de input. Utilizează actualizări diferențiale pentru a modifica doar porțiunile schimbate ale paginii și folosește o conexiune bidirecțională persistentă pentru a transporta input-ul utilizatorului și actualizările UI.
Sends only changed HTML fragments to the client over a persistent WebSocket connection to avoid full page reloads.