awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repository-uri

Awesome GitHub RepositoriesIncremental Page Rendering

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.

Awesome Incremental Page Rendering GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • freshframework/freshAvatar freshframework

    freshframework/fresh

    13,774Vezi pe GitHub↗

    Fresh este un framework web pe partea de server pentru runtime-ul Deno, conceput pentru construirea de site-uri web cu suport nativ pentru TypeScript. Funcționează ca un randator pe partea de server de tip zero-JavaScript care trimite implicit doar HTML către browser pentru a elimina overhead-ul runtime-ului pe partea de client. Framework-ul implementează o arhitectură de tip insule (islands architecture), care livrează HTML static și activează selectiv JavaScript doar pentru componente interactive specifice. Utilizează un router bazat pe sistemul de fișiere care mapează automat structurile de directoare și numele fișierelor la tipare URL fără a necesita un fișier de configurare central. Platforma acoperă randarea pe partea de server, actualizările incrementale ale paginilor și bundling-ul activelor de producție cu hashing de conținut. Oferă un script de bootstrapping al proiectului pentru a inițializa mediul de dezvoltare.

    Provides the ability to update specific sections of the DOM with server-rendered content without full page reloads.

    TypeScript
    Vezi pe GitHub↗13,774
  • tencent/vassonicAvatar Tencent

    Tencent/VasSonic

    11,860Vezi pe GitHub↗

    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.

    Javaandroid-sdkh5hybrid
    Vezi pe GitHub↗11,860
  • hotwired/turboAvatar hotwired

    hotwired/turbo

    7,343Vezi pe GitHub↗

    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.

    JavaScript
    Vezi pe GitHub↗7,343
  1. Home
  2. Web Development
  3. Incremental Page Rendering

Explorează sub-etichetele

  • Custom Render FunctionsOverrides the default rendering process by providing a custom render function through an event listener. **Distinct from Incremental Page Rendering:** Distinct from Incremental Page Rendering: focuses on overriding the rendering function via events, not differential data updates.