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 एक सर्वर-साइड UI फ्रेमवर्क और डिक्लेरेटिव वेब लाइब्रेरी है जो SwiftUI पैटर्न पर आधारित सिंटैक्स का उपयोग करके वेब इंटरफ़ेस बनाने की अनुमति देती है। यह एक सर्वर-ड्रिवन सिस्टम के रूप में कार्य करता है जहाँ इंटरफ़ेस संरचना और स्थिति को सर्वर पर मैनेज किया जाता है और वेब ब्राउज़र के भीतर रेंडर किया जाता है। यह फ्रेमवर्क एक डिक्लेरेटिव डोमेन स्पेसिफिक लैंग्वेज के माध्यम से वेब इंटरफ़ेस के विकास को सक्षम बनाता है जो नेटिव Apple प्लेटफ़ॉर्म इंटरफ़ेस पैटर्न को दर्शाता है। यह रीयल-टाइम स्टेट सिंक्रोनाइज़ेशन और यूज़र इंटरैक्टिविटी को संभालने के लिए सर्वर और ब्राउज़र के बीच एक लाइव कनेक्शन बनाए रखता है। यह सिस्टम क्रॉस-प्लेटफ़ॉर्म इंटरफ़ेस डिज़ाइन और नेविगेशन और इनपुट कंट्रोल जैसे इंटरैक्टिव तत्वों के मैनेजमेंट को कवर करता है। यह पेज के केवल बदले हुए हिस्सों को संशोधित करने के लिए डिफरेंशियल अपडेट का उपयोग करता है और यूज़र इनपुट और UI अपडेट को ट्रांसपोर्ट करने के लिए एक पर्सिस्टेंट द्विदिश (bidirectional) कनेक्शन का उपयोग करता है।
Sends only changed HTML fragments to the client over a persistent WebSocket connection to avoid full page reloads.