-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
node docs issue in child_process #7269
Copy link
Copy link
Closed
Labels
child_processIssues and PRs related to the child_process subsystem.Issues and PRs related to the child_process subsystem.docIssues and PRs related to the documentations.Issues and PRs related to the documentations.
Metadata
Metadata
Assignees
Labels
child_processIssues and PRs related to the child_process subsystem.Issues and PRs related to the child_process subsystem.docIssues and PRs related to the documentations.Issues and PRs related to the documentations.
Using child_process.spawn, I believe the docs are incorrect (simple typo with drastic consequences) when using the stdio option:
the above should be correct, if you wish to create a child_process that is the leader of a new process group, that won't die if the parent is killed.
However, the child_process docs have this:
https://nodejs.org/api/child_process.html#child_process_options_detached
I don't believe the above is correct, although this may work:
this issue had me stuck for a few days :)