5 रिपॉजिटरी
Helper libraries used to inspect and diagnose the state of Go applications during development.
Distinct from Go Utility Libraries: Shortlist candidates were too broad (Utility Libraries) or too specific (Concurrency); this targets the debugging identity.
Explore 5 awesome GitHub repositories matching development tools & productivity · Go Debugging Utilities. Refine with filters or upvote what's useful.
go-spew is a deep inspection library and debugging utility for Go. It functions as a data structure pretty printer that renders complex, nested types into human-readable strings with indentation and type information. The library provides specialized capabilities for visualizing internal program states, including the ability to dump data structures with pointer addresses and map keys. It includes a configuration system to adjust printing behavior, such as limiting recursion depth and setting indentation. The tool uses reflection-based type inspection and recursive tree traversal to handle nes
Provides a specialized library for inspecting variable states and deep nested structures within Go applications.
यह प्रोजेक्ट VS Code के लिए एक Go भाषा एक्सटेंशन है जो एक लैंग्वेज सर्वर क्लाइंट, एक डिबगिंग इंटरफेस और एक टेस्ट ऑटोमेशन रनर के माध्यम से एक व्यापक डेवलपमेंट एनवायरनमेंट प्रदान करता है। यह Go भाषा के पूर्ण डेवलपमेंट लाइफसाइकिल का समर्थन करने के लिए लैंग्वेज इंटेलिजेंस, फॉर्मेटिंग और डिबगिंग क्षमताओं को इंटीग्रेट करता है। यह एक्सटेंशन Go टूलचेन को मैनेज करके खुद को अलग करता है, जिसमें लैंग्वेज फीचर्स के लिए आवश्यक बाहरी बाइनरीज का इंस्टॉलेशन और कॉन्फ़िगरेशन शामिल है। यह एक समर्पित टेस्ट ऑटोमेशन इंटरफेस भी प्रदान करता है जो यूनिट टेस्ट स्केलेटन्स के जनरेशन और सीधे एडिटर के भीतर कोड कवरेज प्रोफाइल्स के विज़ुअलाइज़ेशन की अनुमति देता है।
Integrates a debugging interface with breakpoints and variable tracking for Go applications.
This project is a language extension for VS Code that provides comprehensive Go language support. It functions as a language server client, a debugger interface, and a toolchain manager to facilitate Go application development. The extension distinguishes itself by integrating a full suite of toolchain management capabilities, allowing for the installation and configuration of required binaries, linters, and compiler versions directly within the editor. It also provides deep integration for interactive debugging via Delve, supporting remote target debugging, process attachment, and program st
Provides a full suite of interactive debugging capabilities including breakpoints, call stack analysis, and state inspection.
Panicparse is a toolset for Go crash analysis and runtime debugging. It functions as a panic stack trace parser, a race detector log parser, and a goroutine deduplicator designed to transform raw crash dumps and thread sanitizer output into structured, readable formats. The project distinguishes itself by converting complex stack traces into visual HTML reports with embedded source code. It reduces noise in highly parallelized processes by grouping identical goroutine stacks and prioritizes application code over standard library calls during parsing. The utility also covers live process moni
Provides a web-based utility to inspect and diagnose the state of active Go processes during runtime.
errors is a Go error handling library and stack trace utility that wraps standard errors with execution call stacks and contextual information. It captures program execution paths at the exact moment an error is initialized, extracting granular file paths, line numbers, and function symbols from raw program counter addresses. The library maintains parent-child relationships between wrapped errors to allow deep inspection, unwrapping of root causes, and combination of multiple errors into unified structures. It implements standard error interfaces so enhanced error objects can be used intercha
Diagnoses backend service failures by capturing execution call stacks, file paths, and line numbers.