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
·

6 repository-uri

Awesome GitHub RepositoriesAsynchronous Script Loading

Loading external JavaScript libraries asynchronously to prevent blocking the initial page render.

Distinct from Asynchronous Component Loading: Candidates focus on lazy-loading components or data; this is for the asynchronous loading of an external API script.

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

Awesome Asynchronous Script Loading GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • tomchentw/react-google-mapsAvatar tomchentw

    tomchentw/react-google-maps

    4,626Vezi pe GitHub↗

    Acest proiect este un wrapper Google Maps React și o bibliotecă de integrare care face legătura între API-ul Google Maps JavaScript și o arhitectură declarativă bazată pe componente. Oferă o componentă de hartă interactivă pentru randarea vizualizărilor hărții, a markerelor și a overlay-urilor folosind coordonate geografice și HTML personalizat. Biblioteca servește drept instrument de vizualizare a datelor geografice și o interfață de căutare bazată pe hartă. Permite implementarea funcționalității de căutare a locurilor și a input-urilor de completare automată integrate direct cu vizualizarea hărții. Suprafața de capabilități acoperă servicii bazate pe locație, inclusiv vizualizarea rutelor, street view panoramic și crearea de forme geometrice pe hartă. Suportă diverse opțiuni de randare, cum ar fi straturi de date specializate pentru trafic și hărți termice, overlay-uri HTML și canvas personalizate, și clustering-ul markerelor pentru a gestiona seturi de puncte de înaltă densitate. Instrumentele de desenare interactivă și ferestrele de informații sunt, de asemenea, disponibile pentru definirea zonelor și furnizarea detaliilor despre locație.

    Ensures the Google Maps JavaScript API is loaded asynchronously before map components initialize.

    JavaScriptgoogle-maps-javascript-apireactreact-styleguidist
    Vezi pe GitHub↗4,626
  • hail2u/html-best-practicesAvatar hail2u

    hail2u/html-best-practices

    4,077Vezi pe GitHub↗

    This project is a comprehensive reference guide for writing clean, semantic, and maintainable HTML markup based on modern web standards. It provides a set of rules for implementing semantic HTML standards, using meaningful structural elements instead of generic containers to improve document hierarchy and machine readability. The guide establishes specific conventions for HTML formatting, covering indentation, tag casing, and source code organization to improve codebase maintainability. It also serves as a web accessibility reference, detailing the implementation of ARIA roles, alternative te

    Explains how to load external JavaScript libraries asynchronously to prevent blocking the initial page render.

    Vezi pe GitHub↗4,077
  • jqhph/dcat-adminAvatar jqhph

    jqhph/dcat-admin

    4,022Vezi pe GitHub↗

    dcat-admin este un framework de panou de administrare Laravel utilizat pentru a construi rapid interfețe administrative bazate pe date. Funcționează ca un generator CRUD și instrument de scaffolding backend care produce automat interfețe de creare, citire, actualizare și ștergere bazate pe schemele tabelelor din baza de date. Sistemul se distinge printr-o arhitectură de extensii bazată pe plugin-uri și capacitatea de a rula mai multe instanțe administrative independente într-o singură instalare. Oferă instrumente specializate pentru maparea API-urilor externe către formulare și tabele, precum și un ciclu de viață al formularului bazat pe evenimente pentru executarea de logică personalizată în timpul rezoluției și trimiterii. Framework-ul acoperă o gamă largă de domenii de capabilități, inclusiv controlul accesului bazat pe roluri (RBAC) pentru gestionarea permisiunilor ierarhice, o suită completă de grile de gestionare a datelor cu editare inline și fluxuri de lucru pentru formulare în mai mulți pași. Include, de asemenea, instrumente de vizualizare a datelor pentru dashboard-uri operaționale și o varietate de utilitare de manipulare a conținutului pentru încărcări de fișiere mari și editare text îmbogățit. Sunt furnizate utilitare de linie de comandă pentru a automatiza generarea componentelor administrative și a claselor de acțiune.

    Triggers specific functions once all required scripts finish loading to ensure page elements are fully initialized.

    PHPlaravellaravel-admin
    Vezi pe GitHub↗4,022
  • webcomponents/webcomponentsjsAvatar webcomponents

    webcomponents/webcomponentsjs

    3,856Vezi pe GitHub↗

    Webcomponentsjs is a collection of polyfills and compatibility layers designed to normalize web standards across different browser environments. It provides the foundational infrastructure required to enable consistent support for custom elements, shadow DOM, and HTML templates in browsers that lack native implementations of these specifications. The library distinguishes itself through a feature-detection mechanism that dynamically injects necessary shims only when required. It manages the complexities of component lifecycle synchronization by patching the custom element registry and providi

    Provides a global signaling mechanism to coordinate application startup once all compatibility code is initialized.

    HTML
    Vezi pe GitHub↗3,856
  • baeharam/must-know-about-frontendAvatar baeharam

    baeharam/Must-Know-About-Frontend

    3,675Vezi pe GitHub↗

    This project is a comprehensive frontend engineering study guide designed to cover the essential technical concepts of modern web development. It serves as a multi-disciplinary reference for mastering the browser execution engine, the JavaScript language, and the structural fundamentals of the web. The collection provides deep dives into JavaScript language internals, including execution contexts, closures, prototypes, and the event loop. It further details web browser internals, focusing on the critical rendering path, DOM construction, and engine mechanics. The guide also covers web securi

    Describes the use of async and defer strategies to prevent JavaScript from blocking the render path.

    cssfront-endhtml
    Vezi pe GitHub↗3,675
  • sebholstein/angular-google-mapsAvatar sebholstein

    sebholstein/angular-google-maps

    2,028Vezi pe GitHub↗

    This project is a collection of reusable components designed to integrate Google Maps into web applications built with the Angular framework. It provides a declarative interface for embedding interactive maps, allowing developers to configure map instances, markers, and overlays directly through standard framework templates and property bindings. The library distinguishes itself by wrapping imperative mapping services into a lifecycle-managed architecture. It handles the asynchronous loading of external mapping scripts and ensures that map instances and event listeners are properly cleaned up

    Loads external mapping scripts asynchronously to ensure the main application remains lightweight and responsive.

    TypeScriptagmangularangular2
    Vezi pe GitHub↗2,028
  1. Home
  2. Web Development
  3. Asynchronous Script Loading

Explorează sub-etichetele

  • Initialization SignalingGlobal event-based mechanisms that signal when asynchronous polyfills or dependencies have finished loading. **Distinct from Asynchronous Script Loading:** Distinct from Asynchronous Script Loading: focuses on the signaling mechanism for application startup coordination rather than the loading of external scripts.
  • Post-Load Execution HooksCallbacks that trigger once all required asynchronous scripts have finished loading and the DOM is ready. **Distinct from Asynchronous Script Loading:** Distinct from general async loading by focusing on the execution trigger after the loading process completes.