awesome-repositories.com
Blog
awesome-repositories.com

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

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • bigskysoftware/htmxAvatar de bigskysoftware

    bigskysoftware/htmx

    48,210Ver en GitHub↗

    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
    Ver en GitHub↗48,210
  • aksonov/react-native-router-fluxAvatar de aksonov

    aksonov/react-native-router-flux

    8,927Ver en GitHub↗

    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
    Ver en GitHub↗8,927
  • alda-lang/aldaAvatar de alda-lang

    alda-lang/alda

    5,906Ver en GitHub↗

    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
    Ver en GitHub↗5,906
  • python-attrs/attrsAvatar de python-attrs

    python-attrs/attrs

    5,799Ver en GitHub↗

    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
    Ver en GitHub↗5,799
  • zircote/swagger-phpAvatar de zircote

    zircote/swagger-php

    5,298Ver en GitHub↗

    swagger-php es un generador de especificaciones OpenAPI y biblioteca de documentación de API para PHP. Escanea atributos y anotaciones del código fuente de PHP para producir archivos de especificación estandarizados y referencias de API interactivas. La herramienta funciona como un motor de inferencia de esquemas que deriva tipos de datos y esquemas a partir de sugerencias de tipo nativas de PHP y bloques genéricos. Utiliza análisis estático basado en reflexión para extraer metadatos sin ejecutar la lógica de la aplicación y admite la herencia recursiva de esquemas para fusionar definiciones de clases e interfaces padre. El proyecto incluye una utilidad de línea de comandos para exportar definiciones de API a archivos YAML o JSON estáticos. También proporciona un pipeline para el ensamblaje de especificaciones con lógica de procesamiento conectable para modificar cómo se analiza o estructura el código fuente.

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

    PHP
    Ver en GitHub↗5,298
  • phpdocumentor/phpdocumentorAvatar de phpDocumentor

    phpDocumentor/phpDocumentor

    4,332Ver en GitHub↗

    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
    Ver en GitHub↗4,332
  1. Home
  2. Web Development
  3. Attribute Inheritance

Explorar subetiquetas

  • Attribute Merging from Parent Classes1 sub-etiquetaMerges 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.