3 Repos
Updating specific DOM elements using differential data updates to avoid full page reloads.
Distinct from Server-Rendered Page Enhancement: Distinct from general SSR enhancement as it focuses specifically on differential data updates to refresh fragments without full re-renders.
Explore 3 awesome GitHub repositories matching web development · Incremental Page Rendering. Refine with filters or upvote what's useful.
Fresh ist ein serverseitiges Web-Framework für die Deno-Laufzeitumgebung, das für den Aufbau von Websites mit nativer TypeScript-Unterstützung entwickelt wurde. Es fungiert als Zero-JavaScript-Server-Side-Renderer, der standardmäßig nur HTML an den Browser sendet, um den clientseitigen Laufzeit-Overhead zu eliminieren. Das Framework implementiert eine Insel-Architektur, die statisches HTML liefert und JavaScript nur für spezifische interaktive Komponenten selektiv aktiviert. Es nutzt ein dateisystembasiertes Routing, das Verzeichnisstrukturen und Dateinamen automatisch auf URL-Muster abbildet, ohne dass eine zentrale Konfigurationsdatei erforderlich ist. Die Plattform deckt serverseitiges Rendering, inkrementelle Seiten-Updates und die Produktion von Asset-Bundling mit Content-Hashing ab. Sie bietet ein Projekt-Bootstrapping-Skript zur Initialisierung der Entwicklungsumgebung.
Provides the ability to update specific sections of the DOM with server-rendered content without full page reloads.
VasSonic is a hybrid mobile app framework for Android and iOS designed to optimize the loading speed of web views. It functions as a web view performance optimizer and a mobile web resource cache, utilizing an HTML differential update engine to minimize remote network fetches and reduce first-screen load times. The framework distinguishes itself by splitting HTML into static templates and dynamic data, calculating differences between server state and cached content to send only modified fragments. It employs a native-to-JavaScript bridge to sync these server-side data updates directly into th
Provides a mechanism to refresh specific page elements via differential updates, avoiding full page reloads.
Hotwire Turbo is a server-driven navigation and HTML streaming framework that intercepts link clicks and form submissions to fetch pages in the background and replace content without full browser reloads. It provides a Turbo Frame component that scopes page regions into independent contexts, enabling partial page updates where only a specific area of the page navigates or loads content. The framework includes a page cache and morph system that stores recently visited pages for instant restoration and applies minimal DOM changes on refresh, preserving scroll position and element state. The fra
Allows overriding the default page rendering process by providing a custom render function through an event listener.