-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
Closed
Labels
feature requestIssues that request new features to be added to Node.js.Issues that request new features to be added to Node.js.inspectorIssues and PRs related to the V8 inspector protocolIssues and PRs related to the V8 inspector protocol
Description
Problem: When inspecting multiple node contexts using the new --inspect flag paired with the dedicated node inspect in chrome dev tools, knowing which process you're currently inspecting can be confusing as they're all called "Nodejs Main Context" as per (I think):
Line 302 in 5886e20
| contextCreated(env->context(), "Node.js Main Context"); |
Potential solutions:
- Taking an optional environment variable like NODE_CONTEXT_TITLE (looks like the env might already be being passed in there, not sure if same env as process.env?)
- Could pass in a flag along the lines of --inspect-context-title
Metadata
Metadata
Assignees
Labels
feature requestIssues that request new features to be added to Node.js.Issues that request new features to be added to Node.js.inspectorIssues and PRs related to the V8 inspector protocolIssues and PRs related to the V8 inspector protocol