docs: fix broken Node.js inspector URL in debugging guide#94934
Merged
icyJoseph merged 3 commits intoJun 18, 2026
Conversation
The URL `https://nodejs.org/en/docs/inspector` now returns 404. Updated to the current Node.js Inspector API documentation at `https://nodejs.org/api/inspector.html`.
2a1d42f to
416bbe8
Compare
icyJoseph
reviewed
Jun 18, 2026
Update the inspector help URL from the deprecated /en/docs/inspector path to the current learning guide at /learn/getting-started/debugging. The old URL returns HTTP 404.
a0b92e5 to
2b78316
Compare
Contributor
Author
|
Done! Updated the URL to |
icyJoseph
approved these changes
Jun 18, 2026
Contributor
Stats skippedCommit: 1d30a53 |
Contributor
Tests PassedCommit: 1d30a53 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Updates one broken URL in the debugging guide that returns 404.
The old path (
/en/docs/inspector) no longer exists after Node.js restructured their documentation site. The replacement points to the current Node.js Inspector API docs which returns 200.Why
This URL appears inside a terminal output code block showing what the Node.js debugger prints when launched with
--inspect. A reader who follows the link to learn more about the inspector gets a 404.A related fix for the separate Debugging Guide link (
/en/docs/guides/debugging-getting-started) is tracked in #93958. This PR addresses the second broken Node.js URL in the same file that #93958 did not cover.Checklist