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

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

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

2 Repos

Awesome GitHub RepositoriesComponent Initializers

Systems 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.

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

Awesome Component Initializers GitHub Repositories

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

    google/wire

    14,403Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗14,403
  • teivah/100-go-mistakesAvatar von teivah

    teivah/100-go-mistakes

    7,915Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗7,915
  1. Home
  2. Software Engineering & Architecture
  3. Dependency Tracking
  4. Explicit
  5. Component Initializers

Unter-Tags erkunden

  • Init Function ReplacementsReplaces Go init functions with explicit initialization functions for better error handling and testability. **Distinct from Component Initializers:** Distinct from Component Initializers: focuses on replacing Go's implicit init functions with explicit calls, not general component dependency wiring.