awesome-repositories.com
Blog
awesome-repositories.com

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

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 Repos

Awesome GitHub RepositoriesPlugin Autoloading

Mechanisms for automatically loading external plugins or commands from specified directories.

Distinct from External Configuration Loading: None of the candidates cover the autoloading of functional plugins from a local directory for a debugger.

Explore 5 awesome GitHub repositories matching development tools & productivity · Plugin Autoloading. Refine with filters or upvote what's useful.

Awesome Plugin Autoloading GitHub Repositories

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

    hugsy/gef

    8,020Auf GitHub ansehen↗

    GEF is a Python-based extension for GDB that serves as a framework for binary analysis, exploit development, and low-level debugging. It functions as a dynamic analysis extension designed to assist in reverse engineering workflows and malware analysis by enhancing the debugger's ability to inspect process state and memory. The project is distinguished by its specialized heap analysis tools, which allow for the inspection of glibc heap arenas, bins, and chunks to detect memory corruption. It also provides a dedicated toolkit for exploit development, including cyclic pattern generation for offs

    Automatically loads additional commands and functionality from specified external directories via a plugin system.

    Pythonbinary-ninjactfdebugging
    Auf GitHub ansehen↗8,020
  • laravel/tinkerAvatar von laravel

    laravel/tinker

    7,433Auf GitHub ansehen↗

    Laravel Tinker is an interactive shell that boots the full Laravel application context, allowing you to run PHP code, test models, and experiment with the framework in real time from the command line. It integrates PsySH as its underlying REPL engine, providing features like automatic namespace resolution, command history persistence, and on-demand class loading through Composer's autoloader. The tool handles the full lifecycle of a Laravel console command, from defining input signatures and prompting for missing arguments to executing commands programmatically and queuing them for background

    Loads application classes and dependencies on demand during REPL sessions using Composer's autoloader.

    PHPlaravelpsyshrepl
    Auf GitHub ansehen↗7,433
  • codeigniter4/codeigniter4Avatar von codeigniter4

    codeigniter4/CodeIgniter4

    5,924Auf GitHub ansehen↗

    CodeIgniter is a PHP web framework built on the Model-View-Controller pattern, designed for building full-stack web applications. It provides a lightweight toolkit with minimal configuration, organizing application logic into controllers, models, and views for clean separation of concerns. The framework includes a fluent query builder for constructing SQL statements programmatically, PSR-4 autoloading with namespace mapping, and a service-based dependency injection container for managing shared class instances. The framework distinguishes itself through its comprehensive set of built-in tools

    Wraps reusable functionality into Composer packages for installation and autoloading in any project.

    PHPcodeignitercodeigniter4framework-php
    Auf GitHub ansehen↗5,924
  • emacs-mirror/emacsAvatar von emacs-mirror

    emacs-mirror/emacs

    4,951Auf GitHub ansehen↗

    Emacs is an extensible real-time text editor that displays each character as it is typed across multiple windows and frames. It is fundamentally a scriptable editing environment, allowing users to write custom code that adds new commands or modifies behavior dynamically without restarting the editor. Beyond text editing, the editor includes an interactive help and manual browser that opens contextual documentation for any command or setting on demand, as well as a live configuration customization panel that applies adjustments to settings and themes instantly.

    Defers loading of Lisp files until they are first referenced, reducing startup time and memory usage.

    Emacs Lisp
    Auf GitHub ansehen↗4,951
  • jwiegley/use-packageAvatar von jwiegley

    jwiegley/use-package

    4,465Auf GitHub ansehen↗

    Dieses Projekt ist ein deklaratives Framework und eine domänenspezifische Sprache zur Verwaltung von Emacs-Lisp-Paketen. Es fungiert als Optimierer für die Start-Performance, indem es Paketinstallation, Variableneinstellungen und Tastenkombinationen in einzelnen Blöcken gruppiert, um die anfängliche Boot-Zeit zu reduzieren. Das System zeichnet sich durch ein Framework für verzögertes Laden aus, das die Paketausführung verzögert, bis spezifische Tasten, Hooks oder Modi ausgelöst werden. Es verwendet eine makrobasierte Deklarationssyntax, um die Konfiguration zu organisieren und die Generierung von Autoloads zu automatisieren, wodurch sichergestellt wird, dass Pakete nur geladen werden, wenn sie tatsächlich benötigt werden. Das Projekt deckt breite Funktionsbereiche ab, einschließlich automatisierter Paketinstallation aus Remote-Archiven, Abhängigkeitsmanagement und bedingtem Laden basierend auf dem Betriebssystem oder der Umgebung. Es bietet zudem umfassende Tastaturbelegung für Shortcuts und Chords sowie Tools zur Analyse von Ladestatistiken und zur Modifikation von Mode-Line-Anzeigen.

    Implements a deferred-loading framework that generates autoloads to reduce initial editor boot time.

    Emacs Lispautoloaddeferred-loadingemacs
    Auf GitHub ansehen↗4,465
  1. Home
  2. Development Tools & Productivity
  3. Plugin Autoloading

Unter-Tags erkunden

  • Autoload MechanismsTechniques for deferring loading of code until first reference, reducing startup time. **Distinct from Composer Autoloader Integrations:** Distinct from Composer Autoloader Integrations: focuses on editor/application package autoloading rather than PHP-specific Composer autoloading.
  • Composer Autoloader Integrations1 Sub-TagMechanisms for detecting and integrating with Composer's autoloader for third-party package loading. **Distinct from Plugin Autoloading:** Distinct from Plugin Autoloading: focuses on integrating with Composer's autoloader rather than loading plugins from local directories.