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
·

6 Repos

Awesome GitHub RepositoriesAttribute Inheritance

Mechanisms for propagating configuration attributes from parent to child elements.

Distinguishing note: Focuses on declarative attribute propagation rather than programmatic state inheritance.

Explore 6 awesome GitHub repositories matching web development · Attribute Inheritance. Refine with filters or upvote what's useful.

Awesome Attribute Inheritance GitHub Repositories

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

    bigskysoftware/htmx

    48,210Auf GitHub ansehen↗

    HTMX is a hypermedia-driven frontend library that enables the creation of dynamic, asynchronous web applications by extending standard HTML attributes. It functions as a declarative engine that intercepts browser events to trigger network requests, allowing developers to update specific regions of the document with server-rendered HTML fragments. By shifting the logic of UI composition to the server, it minimizes the need for complex client-side state management and imperative JavaScript. The library distinguishes itself through a progressive enhancement workflow that ensures web interfaces r

    Reduces code duplication by propagating configuration attributes from parent elements to children.

    JavaScripthateoashtmlhtmx
    Auf GitHub ansehen↗48,210
  • aksonov/react-native-router-fluxAvatar von aksonov

    aksonov/react-native-router-flux

    8,927Auf GitHub ansehen↗

    This project is a cross-platform mobile navigation library and declarative routing engine. It maps components to named scenes within a centralized configuration to manage application flow and screen transitions. The system distinguishes itself through a variety of specialized navigation patterns, including a mobile drawer navigation system for side menus and a tab navigation framework for organizing top-level views. It also features a modal overlay manager for rendering screens as pop-ups or transparent lightboxes and a deep linking handler that maps incoming URIs to specific application scen

    Implements a mechanism to propagate configuration attributes from parent scenes to child scenes to reduce redundancy.

    JavaScript
    Auf GitHub ansehen↗8,927
  • alda-lang/aldaAvatar von alda-lang

    alda-lang/alda

    5,906Auf GitHub ansehen↗

    Alda is a text-based music programming language and command-line tool for composing, playing, and live-coding musical scores. It functions as a MIDI composition engine that renders plain-text scores into audio output, and as a live coding environment where code entered in a read-eval-print loop produces real-time playback without restarting the interpreter. The system distinguishes itself through an event-driven playback engine that schedules timed note events, an instrument-attribute inheritance model that cascades properties like volume and tempo from global defaults to individual parts, an

    Cascades per-instrument properties like volume and tempo from global defaults to individual parts.

    Goaldahacktoberfestmusic
    Auf GitHub ansehen↗5,906
  • python-attrs/attrsAvatar von python-attrs

    python-attrs/attrs

    5,799Auf GitHub ansehen↗

    attrs is a Python library that automatically generates initialization, representation, equality, hashing, and ordering methods from declarative class attribute definitions. At its core, it provides a class decorator metaprogramming framework that intercepts class creation to rewrite the class body, producing dunder methods without manual boilerplate. The library includes a comprehensive attribute validation toolkit with built-in validators for type checks, range constraints, regex matching, length limits, and logical composition of validation rules. The library distinguishes itself through it

    Merges attribute definitions from parent classes with child declarations, resolving conflicts during class creation.

    Python
    Auf GitHub ansehen↗5,799
  • zircote/swagger-phpAvatar von zircote

    zircote/swagger-php

    5,298Auf GitHub ansehen↗

    swagger-php ist ein OpenAPI-Spezifikationsgenerator und eine PHP-API-Dokumentationsbibliothek. Sie scannt PHP-Quellcode-Attribute und -Annotationen, um standardisierte Spezifikationsdateien und interaktive API-Referenzen zu erstellen. Das Tool fungiert als Schema-Inferenz-Engine, die Datentypen und Schemata aus nativen PHP-Type-Hints und generischen Blöcken ableitet. Es verwendet reflexionsbasierte statische Analyse, um Metadaten zu extrahieren, ohne Anwendungslogik auszuführen, und unterstützt rekursive Schema-Vererbung, um Definitionen aus Elternklassen und Interfaces zusammenzuführen. Das Projekt enthält ein CLI-Utility zum Exportieren von API-Definitionen in statische YAML- oder JSON-Dateien. Es bietet zudem eine Pipeline für die Spezifikationsassemblierung mit pluggbarer Verarbeitungslogik, um zu modifizieren, wie Quellcode analysiert oder strukturiert wird.

    Merges attribute definitions from parent classes and interfaces into child objects to maintain a consistent definition hierarchy.

    PHP
    Auf GitHub ansehen↗5,298
  • phpdocumentor/phpdocumentorAvatar von phpDocumentor

    phpDocumentor/phpDocumentor

    4,332Auf GitHub ansehen↗

    phpDocumentor is a PHP API documentation generator and source code analyzer that transforms PHP files and DocBlocks into structured HTML API references. It functions as a static site generator and an automatic documentation tool designed to synchronize technical documentation with code changes. The project distinguishes itself by acting as a UML diagram generator, producing class and architectural graphs via PlantUML based on source analysis. It also supports technical manual authoring, rendering hand-written guides in Markdown and ReStructuredText alongside the automatically generated API re

    Combines a parent element's description with a child's description by inserting inherited text.

    PHPdocblockdocblocksgraphviz
    Auf GitHub ansehen↗4,332
  1. Home
  2. Web Development
  3. Attribute Inheritance

Unter-Tags erkunden

  • Attribute Merging from Parent Classes1 Sub-TagMerges attribute definitions from parent classes with child class declarations, resolving conflicts and maintaining method generation order. **Distinct from Attribute Inheritance:** Distinct from Attribute Inheritance: focuses on merging and conflict resolution of attribute definitions during class creation, not runtime propagation.
  • Music Instrument Attribute CascadesMechanisms for propagating per-instrument properties like volume and tempo from global defaults to individual parts. **Distinct from Attribute Inheritance:** Distinct from Attribute Inheritance: applies to music instrument properties (volume, tempo) rather than general web development attribute propagation.