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
·

4 Repos

Awesome GitHub RepositoriesGraph Filtering

Capabilities to exclude specific nodes or edges from a dependency graph to reduce noise.

Distinct from Module Dependency Analysis: Focuses on the visual and logical filtering of the graph rather than the analysis of the dependencies themselves.

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

Awesome Graph Filtering GitHub Repositories

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

    pahen/madge

    10,117Auf GitHub ansehen↗

    Madge is a JavaScript module dependency visualizer and architecture mapper. It analyzes source code to create graphs and diagrams of module relationships, supporting CommonJS, AMD, and ES6 standards. The tool functions as a circular dependency detector to identify recursive import loops and a dependency graph generator that exports relationship maps into image and vector formats. It provides utilities for auditing project structure, including the identification of orphaned modules and leaf modules. Its broader capabilities include dead code identification, module impact analysis through depe

    Allows removing specific modules from the generated dependency graph using custom functions to focus on relevant dependencies.

    JavaScriptamdcommonjsdependencies
    Auf GitHub ansehen↗10,117
  • ondrajz/go-callvisAvatar von ondrajz

    ondrajz/go-callvis

    6,488Auf GitHub ansehen↗

    Visualize call graph of a Go program using Graphviz

    Filters call graph nodes and edges by package import path prefixes to reduce visual noise.

    Goawesome-gocallgraphgolang
    Auf GitHub ansehen↗6,488
  • scottrogowski/code2flowAvatar von scottrogowski

    scottrogowski/code2flow

    4,586Auf GitHub ansehen↗

    code2flow ist ein statischer Programmfluss-Mapper und Generator für Quellcode-Aufrufdiagramme (Call Graphs). Er analysiert Quellcode, um visuelle Flussdiagramme zu erstellen, die Funktionsaufrufbeziehungen und Ausführungspfade abbilden. Das Projekt enthält einen Visualisierer für asynchrone Aufruf-Traces, der Ausführungspfade durch Async- und Await-Aufrufe verfolgt, um die Logik asynchroner Programme abzubilden. Es bietet zudem eine programmierbare Code-Analyse-Schnittstelle, die es ermöglicht, die Logik zur Generierung von Aufrufdiagrammen in andere Softwareanwendungen zu integrieren. Das System handhabt statische Code-Analyse durch die Konvertierung von Quellcode in abstrakte Syntaxbäume, um Funktionsdefinitionen und Aufrufstellen zu identifizieren. Es unterstützt das Filtern von Aufrufdiagrammen, um den Umfang der Visualisierungen durch Inhaltsfilter und tiefenbegrenzte Pfad-Extraktion einzuschränken, während es visuelles Styling zur Unterscheidung von Logikflüssen bietet.

    Provides a filtering capability to display only the downstream dependencies of a target function.

    Python
    Auf GitHub ansehen↗4,586
  • kuzudb/kuzuAvatar von kuzudb

    kuzudb/kuzu

    3,965Auf GitHub ansehen↗

    Kùzu is an embedded property graph database engine designed for high-performance analytical queries and local data management. It operates as a library within the host application process, utilizing a columnar-based storage architecture and just-in-time query compilation to execute complex graph traversals and pattern matching efficiently. By mapping database files directly into system memory, it ensures data durability and high-speed access while maintaining ACID-compliant transactional integrity. The engine distinguishes itself by integrating vector similarity search and full-text search di

    Retrieve lists of nodes or relationships from a recursive path to allow for further inspection or data processing.

    C++cypherdatabaseembeddable
    Auf GitHub ansehen↗3,965
  1. Home
  2. Software Engineering & Architecture
  3. Static Analysis
  4. Module Dependency Analysis
  5. Graph Filtering

Unter-Tags erkunden

  • Downstream Path Extraction1 Sub-TagExtracting and displaying only the downstream dependencies of a specific function up to a defined depth. **Distinct from Graph Filtering:** Specific to extracting forward-looking execution paths rather than general node/edge exclusion.
  • Import Path FiltersFilters call graph nodes and edges by package import path prefixes to focus on specific code areas. **Distinct from Graph Filtering:** Distinct from Graph Filtering: filters by import path patterns, not generic node/edge properties.