awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasOpen-source alternativesSelf-hosted softwareBlogMapa del sitio
ProyectoAcerca deHow we rankPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repositorios

Awesome GitHub RepositoriesAsynchronous Property Loading

Splitting page data into essential and non-essential sets to load heavy components or properties asynchronously.

Distinct from Deferred Loading: Specifically targets the deferral of heavy data properties to optimize initial render, unlike general component deferral.

Explore 3 awesome GitHub repositories matching web development · Asynchronous Property Loading. Refine with filters or upvote what's useful.

Awesome Asynchronous Property Loading GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • pandao/editor.mdAvatar de pandao

    pandao/editor.md

    14,315Ver en GitHub↗

    Editor.md is an embeddable Markdown editor component for web applications that provides a real-time, dual-pane live preview alongside the raw source as the user types. It is designed as a plugin-based Markdown editor with a plugin architecture for extending functionality through custom modules, and it supports rendering LaTeX mathematical expressions using KaTeX as well as converting flowchart and sequence diagram syntax into visual diagrams within the preview. The editor distinguishes itself through its plugin-based extension system, which allows loading additional functionality through exte

    Supports loading the editor component via RequireJS or SeaJS for deferred initialization.

    JavaScriptcodemirrorcommonmarkdocumentation
    Ver en GitHub↗14,315
  • inertiajs/inertiaAvatar de inertiajs

    inertiajs/inertia

    7,708Ver en GitHub↗

    Inertia is a server-driven frontend framework designed to create monolithic single page applications. It acts as a state synchronization protocol and client-side routing bridge, allowing developers to build interactive experiences using modern JavaScript component libraries while keeping routing and controllers on the server. This approach eliminates the need for a separate REST or GraphQL API layer by passing data from server controllers to frontend components as props via JSON payloads. The framework distinguishes itself by utilizing adapter-based integration to link various backend environ

    Inertia JS sends only essential data for the initial render and loads heavier components asynchronously.

    TypeScript
    Ver en GitHub↗7,708
  • ankane/chartkickAvatar de ankane

    ankane/chartkick

    6,526Ver en GitHub↗

    Chartkick is a Ruby on Rails visualization library and JavaScript charting wrapper that provides a high-level interface for integrating interactive charts into web applications. It functions as a multi-engine charting adapter, wrapping various JavaScript charting libraries to provide a consistent API for rendering data visualizations. The project is distinguished by its engine abstraction, which allows users to switch between different JavaScript charting libraries without modifying the underlying data sources. It also supports asynchronous data visualization, fetching chart data from remote

    Assigns separate endpoints to each chart to prevent page timeouts during loading.

    Ruby
    Ver en GitHub↗6,526
  1. Home
  2. Web Development
  3. Performance Optimizations
  4. Initial Page Load Optimizations
  5. Deferred Loading
  6. Asynchronous Property Loading

Explorar subetiquetas

  • Chart Component DeferralLoading individual chart components asynchronously to maintain UI responsiveness. **Distinct from Asynchronous Property Loading:** Specializes asynchronous property loading specifically for visualization components.
  • Module LoadersMechanisms for loading editor components asynchronously using module definition formats like RequireJS or SeaJS. **Distinct from Asynchronous Property Loading:** Distinct from Asynchronous Property Loading: focuses on loading editor modules via AMD/CMD loaders, not splitting page data properties.