awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

Awesome GitHub RepositoriesAsynchronous Stack Trace Reconstruction

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

Explore 3 awesome GitHub repositories matching development tools & productivity · Asynchronous Stack Trace Reconstruction. Refine with filters or upvote what's useful.

Awesome Asynchronous Stack Trace Reconstruction GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • kriskowal/qkriskowal 的头像

    kriskowal/q

    15,030在 GitHub 上查看↗

    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

    Rewrites error stack traces to track execution across asynchronous jumps and find the origin of failures.

    JavaScript
    在 GitHub 上查看↗15,030
  • nswbmw/node-in-debuggingnswbmw 的头像

    nswbmw/node-in-debugging

    6,457在 GitHub 上查看↗

    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
    在 GitHub 上查看↗6,457
  • google/perfettogoogle 的头像

    google/perfetto

    5,558在 GitHub 上查看↗

    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++
    在 GitHub 上查看↗5,558
  1. Home
  2. Development Tools & Productivity
  3. Asynchronous Debugging Toolkits
  4. Asynchronous Stack Trace Reconstruction

探索子标签

  • Profile-Based Stack ReconstructorsTools that retrieve and assemble full call stacks from profiling data using frame and callsite identifiers. **Distinct from Asynchronous Stack Trace Reconstruction:** Distinct from Asynchronous Stack Trace Reconstruction: reconstructs stacks from profiling data using frame identifiers, not async execution boundaries.