awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjektÜber unsHow we rankPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 Repos

Awesome GitHub RepositoriesAsynchronous Asset Loading

Mechanisms for loading CSS and JavaScript files without blocking the browser's main rendering thread.

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

Awesome Asynchronous Asset Loading GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • twbs/bootstrapAvatar von twbs

    twbs/bootstrap

    174,380Auf GitHub ansehen↗

    Bootstrap is a comprehensive, mobile-first CSS framework designed for building responsive web interfaces. It provides a standardized library of reusable UI components, such as navigation bars, modals, and forms, alongside a robust grid system that ensures consistent layout alignment across diverse viewport sizes. By establishing a baseline through browser normalization and standardized typography, the project enables developers to create accessible, cross-browser compatible web applications. The framework distinguishes itself through a modular Sass-based architecture that allows for deep cust

    Permits non-blocking loading of CSS and JavaScript files to accelerate initial page rendering.

    MDXbootstrapcsscss-framework
    Auf GitHub ansehen↗174,380
  • requirejs/requirejsAvatar von requirejs

    requirejs/requirejs

    12,919Auf GitHub ansehen↗

    RequireJS is a JavaScript module loader and dependency manager that implements the Asynchronous Module Definition API. It enables the asynchronous loading of JavaScript files in the browser to prevent page rendering blocks and manages interdependent scripts to avoid global namespace pollution and execution order issues. The project includes a build optimizer that combines and minifies multiple script files into single bundles to reduce network requests. It also provides a mechanism for version management, allowing multiple versions of the same library to coexist on a single page without confl

    Provides asynchronous loading of JavaScript modules in the browser to prevent rendering blocks.

    JavaScript
    Auf GitHub ansehen↗12,919
  • petehunt/webpack-howtoAvatar von petehunt

    petehunt/webpack-howto

    10,010Auf GitHub ansehen↗

    This project is a Webpack build guide and a reference for implementing a JavaScript module bundler. It serves as a frontend build pipeline designed to resolve dependencies, package source files, and optimize assets for web browsers. The guide focuses on asset optimization and performance strategies. This includes implementing code splitting for asynchronous module loading, extracting shared dependencies to improve browser caching, and generating multiple entrypoints to reduce initial download sizes. The project covers a broad range of build-time capabilities, including modern JavaScript tran

    Implements mechanisms for loading JavaScript chunks asynchronously to reduce the initial page load time.

    JavaScript
    Auf GitHub ansehen↗10,010
  • seajs/seajsAvatar von seajs

    seajs/seajs

    8,270Auf GitHub ansehen↗

    SeaJS is a client-side JavaScript module loader and dependency manager. It provides a system for resolving and loading isolated JavaScript files as modules, ensuring that internal and external code requirements are met before execution. The project distinguishes itself as a pluggable asset loader, utilizing a plugin system to load and integrate non-JavaScript assets, such as stylesheets and text files, directly into the module workflow. The system handles frontend dependency resolution through dependency-graph tracking and dynamic path resolution. It manages code organization via isolated mo

    Implements mechanisms for loading JavaScript and CSS files without blocking the browser's main rendering thread.

    JavaScript
    Auf GitHub ansehen↗8,270
  • filamentgroup/loadcssAvatar von filamentgroup

    filamentgroup/loadCSS

    6,647Auf GitHub ansehen↗

    loadCSS ist ein asynchroner CSS-Loader und ein nicht-blockierender Stylesheet-Injektor. Er bietet eine technische Implementierung zum Laden von Stylesheets, ohne den Rendering-Prozess des Browsers zu blockieren, um eine reaktionsschnelle Benutzeroberfläche zu erhalten. Das Projekt implementiert ein spezifisches CSS-Lademuster, um zu erkennen, wann asynchrone Stylesheets in verschiedenen Webbrowsern vollständig geladen wurden. Dies ermöglicht die Ausführung von Callback-Funktionen erst nach dem vollständigen Laden eines Stylesheets, um ein konsistentes visuelles Verhalten sicherzustellen. Das Tool deckt programmatisches Einfügen von Stylesheets, dynamische Injektion basierend auf Anwendungslogik und die Erkennung des Stylesheet-Ladevorgangs ab. Es steuert, wie Styles angefordert werden, um die Frontend-Performance zu optimieren.

    Loads CSS stylesheets without blocking the browser's main rendering thread to maintain UI responsiveness.

    JavaScript
    Auf GitHub ansehen↗6,647
  • headjs/headjsAvatar von headjs

    headjs/headjs

    4,123Auf GitHub ansehen↗

    Headjs ist ein asynchroner Asset-Loader, der JavaScript- und CSS-Dateien parallel lädt und in einer spezifischen Reihenfolge ausführt, um die Seitengeschwindigkeit zu verbessern. Er fungiert als Ressourcen-Abhängigkeitsmanager, der den Ladestatus von Skripten verfolgt und Callbacks erst ausführt, wenn alle erforderlichen Abhängigkeiten vollständig geladen sind. Das Projekt enthält eine Browser-Feature-Detection-Bibliothek, die auf HTML5- und CSS3-Fähigkeiten prüft. Dies ermöglicht bedingtes Laden von Ressourcen, bei dem Assets basierend auf erkannten Browser-Features, Gerätefähigkeiten oder Bildschirmauflösung ausgeliefert werden. Das System verwaltet zudem die Frontend-Asset-Optimierung durch eine Kombination aus Skript-Abhängigkeitsmanagement und der Anwendung bedingter Styles basierend auf der erkannten Browser-Unterstützung.

    Loads JavaScript and CSS files asynchronously in parallel to prevent blocking the main rendering thread and improve page speed.

    JavaScript
    Auf GitHub ansehen↗4,123
  1. Home
  2. Web Development
  3. Performance Optimizations
  4. Asynchronous Asset Loading