awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 dépôts

Awesome GitHub RepositoriesExplicit

Systems that limit dependency identification to explicit manifest declarations.

Distinct from Dependency Tracking: Distinct from Automatic Dependency Tracking: focuses on disabling implicit analysis in favor of explicit configuration.

Explore 6 awesome GitHub repositories matching software engineering & architecture · Explicit. Refine with filters or upvote what's useful.

Awesome Explicit GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • nrwl/nxAvatar de nrwl

    nrwl/nx

    28,939Voir sur GitHub↗

    This project is a build orchestration engine and development toolkit designed for managing large-scale monorepos. It provides a unified workspace environment that maps project relationships and dependencies, enabling the system to perform intelligent impact analysis and execute only the tasks affected by specific code changes. The system distinguishes itself through a persistent daemon that monitors file changes for near-instant feedback and a content-addressable caching mechanism that stores task outputs to prevent redundant computation across local and remote environments. It further suppor

    Allows explicit declaration of project relationships where automated dependency detection is not applicable.

    TypeScriptangularbuildbuild-system
    Voir sur GitHub↗28,939
  • prefecthq/prefectAvatar de PrefectHQ

    PrefectHQ/prefect

    21,640Voir sur GitHub↗

    Prefect is a workflow orchestration platform designed to define, schedule, and monitor complex data pipelines as Python code. It functions as a container-native engine that wraps individual tasks in isolated environments, ensuring consistent dependencies and resource allocation across diverse infrastructure. By utilizing a state-machine-based orchestration model, the system tracks execution progress through discrete transitions and persistent event logs to maintain reliable and observable task processing. The platform distinguishes itself through a decoupled worker-API architecture, which sep

    Allows users to define formal relationships between data assets to ensure correct execution order.

    Pythonautomationdatadata-engineering
    Voir sur GitHub↗21,640
  • google/wireAvatar de google

    google/wire

    14,403Voir sur GitHub↗

    Wire is a compile-time dependency injection framework for Go that generates code to wire application components together. It analyzes function signatures at compile time to build an explicit initialization graph, removing the need for runtime reflection or manual wiring code. The framework operates as a Go code generator and static analysis tool, transforming annotated source code into generated wire files that compile alongside the original project. It connects dependencies by matching function parameters and return types, producing a directed acyclic graph of component dependencies that is

    Connects dependencies through function signatures so initialization is explicit and testable.

    Gocodegendependency-injectiongo
    Voir sur GitHub↗14,403
  • teivah/100-go-mistakesAvatar de teivah

    teivah/100-go-mistakes

    7,915Voir sur GitHub↗

    100 Go Mistakes is a reference book and code review companion that catalogues frequent Go programming anti-patterns and provides corrected implementations for each one. It covers a wide range of common pitfalls, from range loop variable capture and interface nil handling to error wrapping and map iteration randomization, helping developers recognize and avoid these issues in their own code. The project distinguishes itself by offering a structured, example-driven approach to learning idiomatic Go. It covers core design decisions such as when to use pointer versus value receivers, how to apply

    Provides explicit guidance on replacing Go init functions with testable alternatives.

    Gobookchinesedocumentation
    Voir sur GitHub↗7,915
  • linkedin/css-blocksAvatar de linkedin

    linkedin/css-blocks

    6,302Voir sur GitHub↗

    High performance, maintainable stylesheets.

    Provides a resolve() directive to explicitly decide which block's property wins in conflicts.

    TypeScriptcsscss-modulessass
    Voir sur GitHub↗6,302
  • jquery-ui-bootstrap/jquery-ui-bootstrapAvatar de jquery-ui-bootstrap

    jquery-ui-bootstrap/jquery-ui-bootstrap

    5,493Voir sur GitHub↗

    Ce projet est un framework CSS et une couche de style qui applique les styles visuels de Bootstrap aux composants jQuery UI. Il fonctionne comme un pont inter-bibliothèques pour unifier l'identité visuelle de ces deux bibliothèques, garantissant que les widgets jQuery UI correspondent à un système de design cohérent basé sur Bootstrap. Le framework résout les conflits visuels et fonctionnels entre les bibliothèques via l'injection de style basée sur les sélecteurs et le mappage de thèmes. Il utilise une approche d'intégration en couches pour attacher des classes CSS standardisées aux éléments rendus par la bibliothèque de widgets, empêchant les collisions de style. Le projet couvre un large éventail d'éléments d'interface utilisateur interactifs, incluant des contrôles de saisie comme les sélecteurs de date, les champs d'autocomplétion et les curseurs. Il fournit également un style thématique pour les composants de mise en page tels que les boîtes de dialogue modales et les interfaces à onglets, ainsi que des éléments visuels comme les barres de progression, les menus et les infobulles.

    Uses targeted selector overrides and specificity management to prevent style collisions between Bootstrap and jQuery UI.

    HTML
    Voir sur GitHub↗5,493
  1. Home
  2. Software Engineering & Architecture
  3. Dependency Tracking
  4. Explicit

Explorer les sous-tags

  • Asset DependenciesFormal declarations of relationships between data assets to ensure correct execution order. **Distinct from Explicit:** Distinct from general dependency tracking: focuses on explicit asset-level relationships for data pipelines rather than code-level dependency analysis.
  • Component Initializers1 sous-tagSystems that connect dependencies through function signatures so initialization is explicit and testable without the generator. **Distinct from Explicit:** Distinct from Explicit: focuses on explicit initialization of components via function signatures, not just dependency manifest declarations.
  • Style Conflict Resolutions1 sous-tagUses a resolve() declaration to let developers manually decide which block's property wins when two blocks target the same element. **Distinct from Explicit:** Distinct from Explicit: focuses on resolving CSS property conflicts between blocks, not general dependency declarations.