src: check if the script file exists before starting inspector #42673
+94
−39
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.
Fixed #42600
Currently
node --inspect-brk index.jswill start the inspector and wait a connection event thoughindex.jsdoesn't exist. And immediately after connected, node will throwCannot find moduleerror and wait to be disconnected.This PR added the ability to check for the existence of the script file before an inspector agent is started. If the script is missing, inspector is not enabled and node module loader will throw MODULE_NOT_FUOND error.
node --inspect no-exist.jsnode --inspect-brk no-exist.jsnode inspect no-exist.jsnode --inspectnode --inspect-brk