doc,src,test: fix dead inspector help URL#62745
doc,src,test: fix dead inspector help URL#62745semimikoh wants to merge 3 commits intonodejs:mainfrom
Conversation
|
Review requested:
|
f955be0 to
2a6b732
Compare
Codecov Reportβ
All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #62745 +/- ##
==========================================
- Coverage 91.55% 89.69% -1.86%
==========================================
Files 355 706 +351
Lines 149381 218127 +68746
Branches 23364 41733 +18369
==========================================
+ Hits 136765 195650 +58885
- Misses 12354 14395 +2041
- Partials 262 8082 +7820
π New features to boost your workflow:
|
mertcanaltin
left a comment
There was a problem hiding this comment.
LGTM! Thanks for the edits!
| @@ -16,7 +16,7 @@ script to debug. | |||
| ```console | |||
| $ node inspect myscript.js | |||
| < Debugger listening on ws://127.0.0.1:9229/621111f9-ffcb-4e82-b718-48a145fa5db8 | |||
| < For help, see: https://nodejs.org/en/docs/inspector | |||
| < For help, see: https://nodejs.org/api/inspector.html | |||
There was a problem hiding this comment.
The page is actually moved to https://nodejs.org/learn/getting-started/debugging.
| < For help, see: https://nodejs.org/api/inspector.html | |
| < For help, see: https://nodejs.org/learn/getting-started/debugging |
| @@ -28,7 +28,7 @@ function check(url, cb) { | |||
| }); | |||
|
|
|||
| res.on('end', common.mustCall(() => { | |||
| assert.match(result, />Debugging Node\.js</); | |||
| assert.match(result, /<title>Inspector \| Node\.js/); | |||
There was a problem hiding this comment.
The page https://nodejs.org/learn/getting-started/debugging still match this matcher.
2a6b732 to
39d8662
Compare
39d8662 to
403ae9c
Compare
|
would you mind fixing the linter errors? |
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
@legendecas Fixed the format-cpp linter error. |
|
@mertcanaltin @legendecas @lpinca The latest CI failures look unrelated to this change, since this PR only updates the inspector help |
Commit Queue failed- Loading data for nodejs/node/pull/62745 β Done loading data for nodejs/node/pull/62745 ----------------------------------- PR info ------------------------------------ Title doc,src,test: fix dead inspector help URL (#62745) β Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch semimikoh:fix/inspector-dead-help-link -> nodejs:main Labels c++, inspector, author ready, needs-ci Commits 3 - doc,src,test: fix dead inspector help URL - doc,src,test: use moved inspector help page - src: fix clang-format style in inspector_socket_server Committers 1 - semimikoh <ejffjeosms@gmail.com> PR-URL: https://github.com/nodejs/node/pull/62745 Fixes: https://github.com/nodejs/node/issues/62743 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/62745 Fixes: https://github.com/nodejs/node/issues/62743 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> -------------------------------------------------------------------------------- βΉ This PR was created on Tue, 14 Apr 2026 23:12:55 GMT β Approvals: 2 β - Chengzhong Wu (@legendecas) (TSC): https://github.com/nodejs/node/pull/62745#pullrequestreview-4123045454 β - Luigi Pinca (@lpinca): https://github.com/nodejs/node/pull/62745#pullrequestreview-4116488920 β Last GitHub CI successful βΉ Last Full PR CI on 2026-04-20T14:03:41Z: https://ci.nodejs.org/job/node-test-pull-request/72798/ - Querying data for job/node-test-pull-request/72798/ β Build data downloaded β Last Jenkins CI successful -------------------------------------------------------------------------------- β No git cherry-pick in progress β No git am in progress β No git rebase in progress -------------------------------------------------------------------------------- - Bringing origin/main up to date... From https://github.com/nodejs/node * branch main -> FETCH_HEAD β origin/main is now up-to-date - Downloading patch for 62745 From https://github.com/nodejs/node * branch refs/pull/62745/merge -> FETCH_HEAD β Fetched commits as 75606703e8e2..4df9c8a9c838 -------------------------------------------------------------------------------- Auto-merging doc/api/debugger.md [main 880b9be70a] doc,src,test: fix dead inspector help URL Author: semimikoh <ejffjeosms@gmail.com> Date: Wed Apr 15 08:11:47 2026 +0900 4 files changed, 9 insertions(+), 10 deletions(-) Auto-merging doc/api/debugger.md [main 0c9e2d3435] doc,src,test: use moved inspector help page Author: semimikoh <ejffjeosms@gmail.com> Date: Thu Apr 16 00:21:27 2026 +0900 4 files changed, 10 insertions(+), 9 deletions(-) [main d67ef2d2fb] src: fix clang-format style in inspector_socket_server Author: semimikoh <ejffjeosms@gmail.com> Date: Thu Apr 16 08:07:39 2026 +0900 1 file changed, 2 insertions(+), 1 deletion(-) β Patches applied There are 3 commits in the PR. Attempting autorebase. (node:347) [DEP0190] DeprecationWarning: Passing args to a child process with shell option true can lead to security vulnerabilities, as the arguments are not escaped, only concatenated. (Use `node --trace-deprecation ...` to show where the warning was created) Rebasing (2/6) Executing: git node land --amend --yes --------------------------------- New Message ---------------------------------- doc,src,test: fix dead inspector help URLhttps://github.com/nodejs/node/actions/runs/24680062576 |
The inspector help message pointed to https://nodejs.org/en/docs/inspector
which returns a 404. Updated to https://nodejs.org/api/inspector.html.
Fixes: #62743