node-inspect-debugger

Debug Node.js apps via Chrome DevTools Protocol CLI with breakpoints and stepping.

1|Updated Jun 23, 2026
One-click install
npx skills add https://github.com/whichguy/hermes-skills-marketplace --skill node-inspect-debugger-whichguy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: node-inspect-debugger
Source: https://github.com/whichguy/hermes-skills-marketplace/tree/main/skills/node-inspect-debugger
Command: npx skills add https://github.com/whichguy/hermes-skills-marketplace --skill node-inspect-debugger-whichguy

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill provides a way to debug Node.js applications using the Chrome DevTools Protocol CLI, offering features like breakpoints, step-by-step execution, and expression evaluation.

Core Features & Use Cases

  • Breakpoints: Set breakpoints at specific lines or functions to pause execution.
  • Step-by-Step Execution: Step over, into, or out of functions to trace execution flow.
  • Expression Evaluation: Evaluate expressions at any point in the code.
  • Use Case: When a Node.js application encounters an error, this Skill can be used to inspect the state of the application at the time of the error and identify the cause.

Quick Start

To debug a Node.js script, use the command: node inspect path/to/script.js

Frequently Asked Questions about node-inspect-debugger

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I debug a Node.js application using Chrome DevTools Protocol?

Debug Node.js applications using the Chrome DevTools Protocol CLI by running the `node inspect` command on your script to attach the debugger and pause execution for troubleshooting.

Can I set breakpoints and evaluate expressions in Node.js during runtime?

Yes, you can set breakpoints at specific lines or functions to pause execution and evaluate expressions at any point in the Node.js code to inspect application behavior and state during runtime.

What is the best way to trace execution flow in a Node.js script?

Trace execution flow in a Node.js script by using step-by-step execution commands to step over, into, or out of functions, allowing you to analyze application behavior line by line.

Do I need Chrome installed to use the node inspect debugger?

You need Node.js and Chrome DevTools Protocol support to use this debugging capability, as the Skill relies on the protocol CLI to provide features like breakpoints and expression evaluation.

When should I use the node inspect debugger for troubleshooting?

Use the node inspect debugger when a Node.js application encounters an error and you need to inspect the application state at the exact time of the error to identify the underlying cause.

How do I start debugging a Node.js script from the command line?

Start debugging a Node.js script from the command line by executing `node inspect path/to/script.js`, which initializes the Chrome DevTools Protocol CLI debugger for that specific file.