docs: fix broken Node.js inspector URL in debugging guide - #94934
Merged
icyJoseph merged 3 commits intoJun 18, 2026
Conversation
jahanzaib-iqbal-dev
marked this pull request as ready for review
June 18, 2026 08:07
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`.
jahanzaib-iqbal-dev
force-pushed
the
docs/fix-nodejs-inspector-url
branch
from
June 18, 2026 08:34
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.
jahanzaib-iqbal-dev
force-pushed
the
docs/fix-nodejs-inspector-url
branch
from
June 18, 2026 10:03
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 |
icyJoseph
pushed a commit
that referenced
this pull request
Jul 21, 2026
## What Updates one broken URL in the debugging guide that returns 404. ```diff -For help, see: https://nodejs.org/en/docs/inspector +For help, see: https://nodejs.org/api/inspector.html ``` 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 - [x] Docs-only change. No behavior impact. - [x] Replacement URL verified to return HTTP 200. <!-- NEXT_JS_LLM_PR --> (cherry picked from commit c5a826f)
icyJoseph
added a commit
that referenced
this pull request
Jul 22, 2026
## Summary - docs: server actions guide x-refs (#95143) - docs: remove unnecessary async from rewrites/headers/redirects examples (#95148) - docs: Update FormEvent to SubmitEvent in form handling example (#95453) - docs: remove incorrect statement that force-cache is the default (#95235) - docs: note default error/not-found UI follows OS color scheme (#95673) - docs: useSearchParams example stray link (#95759) - docs: remove experimental @next/routing note (#94903) - docs: add 'Set up your editor' to the installation guide (#95928) - docs: clarify layout.js nesting behavior in route groups (#95720) - Include examples of static export tools & GitHub Pages template (#95929) - docs: fix unstable_cache syntax error (#96002) - docs: clarify sequential data fetching example (#94930) - docs: Fix broken link to Node.js Debugging Guide (#93958) - docs: fix broken Node.js inspector URL in debugging guide (#94934) - docs(authentication): add Auth and streaming, fix code fences and imports (#95056) --------- Co-authored-by: thsid <63248890+thsid@users.noreply.github.com> Co-authored-by: Marco Dotzler <122102508+M4cM4rco@users.noreply.github.com> Co-authored-by: Pranav <mohnapranav@gmail.com> Co-authored-by: Tim Neutkens <tim@timneutkens.nl> Co-authored-by: Aurora Scharff <66901228+aurorascharff@users.noreply.github.com> Co-authored-by: Ankur Prajapati <91510065+ankurdotio@users.noreply.github.com> Co-authored-by: WildCharger <46546991+WildChargerTV@users.noreply.github.com> Co-authored-by: David GG <hola@davidgg.es> Co-authored-by: Giles Thompson <giles@papaiti.com> Co-authored-by: Jahanzaib iqbal <78400134+jahanzaib-iqbal-dev@users.noreply.github.com>
m-kawafuji
pushed a commit
to m-kawafuji/next.js
that referenced
this pull request
Aug 8, 2026
## What Updates one broken URL in the debugging guide that returns 404. ```diff -For help, see: https://nodejs.org/en/docs/inspector +For help, see: https://nodejs.org/api/inspector.html ``` 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 vercel#93958. This PR addresses the second broken Node.js URL in the same file that vercel#93958 did not cover. ## Checklist - [x] Docs-only change. No behavior impact. - [x] Replacement URL verified to return HTTP 200. <!-- NEXT_JS_LLM_PR -->
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