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
·

5 Repos

Awesome GitHub RepositoriesAsynchronous Debugging Toolkits

Specialized toolsets for tracing and debugging execution flows across asynchronous boundaries.

Distinct from Debugging And Tracing: None of the candidates cover the specific combined capability of long-stack tracing and unhandled rejection management for promises.

Explore 5 awesome GitHub repositories matching development tools & productivity · Asynchronous Debugging Toolkits. Refine with filters or upvote what's useful.

Awesome Asynchronous Debugging Toolkits GitHub Repositories

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

    petkaantonov/bluebird

    20,515Auf GitHub ansehen↗

    Bluebird is a JavaScript promise library designed for managing asynchronous operations with a custom promise implementation. It provides a framework for controlling promise lifecycles and orchestrating non-blocking programming patterns. The library distinguishes itself with an asynchronous debugging toolkit that captures long stack traces across asynchronous boundaries and a global handler for unhandled promise rejections. It includes a predicate-based error filtering system to target specific exception types and a mechanism for the deterministic cleanup of system resources. It covers a broa

    Provides a suite for capturing long stack traces and handling uncaught promise rejections.

    JavaScript
    Auf GitHub ansehen↗20,515
  • kriskowal/qAvatar von kriskowal

    kriskowal/q

    15,030Auf GitHub ansehen↗

    q is a JavaScript promise library and asynchronous flow controller designed to manage non-blocking operations. It serves as a system for coordinating parallel tasks and sequencing asynchronous workflows through task chaining and error propagation. The library distinguishes itself with specialized debugging tools that capture long stack traces across asynchronous jumps and monitor unhandled rejections to prevent silent failures. It also functions as a remote object proxy, forwarding method calls to remote targets and routing responses back through promises. The project provides comprehensive

    Provides specialized tools for tracing long stack traces across asynchronous jumps in complex promise chains.

    JavaScript
    Auf GitHub ansehen↗15,030
  • nswbmw/node-in-debuggingAvatar von nswbmw

    nswbmw/node-in-debugging

    6,457Auf GitHub ansehen↗

    This project is a comprehensive technical guide and diagnostic manual for analyzing memory, performance, and asynchronous behavior within Node.js applications. It provides detailed methods for asynchronous tracing, memory diagnostics, and performance analysis to resolve runtime errors and execution bottlenecks. The resource distinguishes itself by covering advanced diagnostic workflows, including the use of flame graphs for CPU profiling, the capture and comparison of heap snapshots for memory leak detection, and the mapping of asynchronous call stacks. It also provides technical guidance on

    Reconstructs calling chains across asynchronous boundaries to recover lost context in callbacks and promises.

    debugdebuggingguide
    Auf GitHub ansehen↗6,457
  • google/perfettoAvatar von google

    google/perfetto

    5,558Auf GitHub ansehen↗

    Perfetto is a platform for system-level performance tracing and analysis on Linux and Android. It combines a high-throughput trace recorder, a SQL-based query engine, and a browser-based visualizer into a single toolchain. The platform covers CPU scheduling and call-stack profiling, native and Java heap memory allocation tracking, GPU and graphics events, and system-wide counters such as CPU frequency and power consumption. The architecture decouples trace recording from offline analysis, using a compact protobuf format for event encoding and columnar storage for efficient SQL queries. The we

    Retrieves and assembles full call stacks from profiling data using frame and callsite identifiers.

    C++
    Auf GitHub ansehen↗5,558
  • 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.

    Visualizes the behavior of asynchronous code by tracing execution flow through async and await calls.

    Python
    Auf GitHub ansehen↗4,586
  1. Home
  2. Development Tools & Productivity
  3. Asynchronous Debugging Toolkits

Unter-Tags erkunden

  • Asynchronous Stack Trace Reconstruction1 Sub-TagRewriting error stacks to preserve the call site and execution history across event loop turns. **Distinct from Asynchronous Debugging Toolkits:** Focuses specifically on the reconstruction of the stack trace itself, while the parent is a broader toolkit for debugging.