Debugging Frameworks and Tools

Examples of Debugging Frameworks and Tools
16 Topics

Articles

Angular CLI Debugging Examples

Explore practical examples of using the Angular CLI for debugging in Angular applications.

Read article

Chrome DevTools Debugging Examples

Explore practical examples of using Chrome DevTools for debugging common web development issues.

Read article

Debugging Java Applications in IntelliJ IDEA

Explore practical examples of debugging Java applications using IntelliJ IDEA. Learn essential techniques to troubleshoot effectively.

Read article

Debugging Mobile Apps with Android Studio

Explore practical examples of debugging mobile applications using Android Studio, focusing on common errors and effective solutions.

Read article

Debugging Node.js Applications with Node Inspector

Explore practical examples of debugging Node.js applications using Node Inspector to enhance your development skills.

Read article

Debugging React Applications with Developer Tools

Explore practical examples for debugging React apps using React Developer Tools.

Read article

Examples of Debugging with Xcode

Explore practical examples of debugging with Xcode to enhance your development skills and resolve common issues.

Read article

Examples of .NET Debugger Usage in Visual Studio

Explore practical examples of using the .NET debugger in Visual Studio to resolve common coding errors effectively.

Read article

Fiddler HTTP Debugging Examples

Explore practical examples of using Fiddler for effective HTTP debugging.

Read article

Firebug Web Debugging Examples: A Practical Guide

Explore practical examples of using Firebug for web debugging to enhance your development skills.

Read article

GDB Debugging Examples for C/C++

Explore practical examples of using GDB for effective debugging in C and C++ programming.

Read article

Jest Debugging Examples for JavaScript Tests

Explore practical examples of using Jest to debug JavaScript tests effectively.

Read article

Mastering Logcat for Effective Android Debugging

In this article, we will explore how to effectively use Logcat, a powerful tool in Android development, for debugging your applications. By the end, you'll have practical examples that demonstrate how to identify and resolve common issues.

Read article

Real‑world examples of effective debugging techniques for Ruby on Rails apps

If you build Rails apps for a living, you don’t just want theory—you want real examples of effective debugging techniques for Ruby on Rails apps that actually save you at 2 a.m. when production is on fire. Rails is opinionated and powerful, but that also means bugs can hide in callbacks, background jobs, N+1 queries, and mysterious ActiveRecord magic. In this guide, we’ll walk through practical, battle‑tested examples of effective debugging techniques for Ruby on Rails apps, from using `byebug` and `pry` in gnarly service objects to tracking down memory leaks in long‑running Sidekiq workers. We’ll look at how to combine logs, stack traces, and performance tools to get from “something is slow” to the exact line of code that’s killing your response times. The focus here is on how experienced Rails engineers actually work: small, targeted experiments, clear instrumentation, and a toolkit of reliable debugging patterns you can reuse across projects.

Read article

Using Sentry for Error Tracking: Practical Examples

Explore practical examples of using Sentry for effective error tracking in your applications.

Read article

Why Your Site Feels Slow (Even When Your Server Is Fast)

Ever had a client swear “the site is slow”… while your server metrics look totally fine? CPU is chill, database is bored, and yet the homepage loads like it’s on dial‑up. Annoying, right? This is exactly where Lighthouse stops being a nice-to-have report and starts behaving like a very opinionated performance engineer sitting next to you. It doesn’t just tell you a score; it tells you where the browser is hurting. In this article, we’ll walk through three very real scenarios where Lighthouse turns vague complaints into clear, fixable problems: a JavaScript-heavy app that feels sluggish, a media-rich marketing site that looks pretty but crawls, and a “modern” single-page app that’s secretly blocking the main thread. No abstract theory. Just screenshots, metrics, and the kind of debugging trail you actually follow at 1:00 a.m. when production is on fire. If you’ve ever stared at a Lighthouse report wondering what to do first, this is for you.

Read article