fix(node/child_process): ensure stdio pipes exist when spawn fails #28573
+55
−52
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.
Closes #18667
When spawning a process using the Node
child_process
polyfill andstdio: "pipe"
,the runtime would only set up
stdin
,stdout
, andstderr
afterDeno.Command.spawn()
succeeded. If the underlying command failed to spawn (e.g. permission denied or not found),
these streams remained
null
, leading consumers likeesbuild
(used by Vite) to throwCannot read properties of null (reading 'on')
when attaching handlers.This patch:
PassThrough
streams forstdin
,stdout
, andstderr
whenstdio
is'pipe'
so that they’re always non‑null, even if spawn fails. Node guaranteesthe same for pipe streams.
tests/unit_node/child_process_test.ts
exercising a spawn failure withstdio: "pipe"
to ensure the streams are present and handlers can be attached without throwing.Formatting and linting pass on the touched files.
Notes
The entire test suite requires a fresh
deno
build to pick up the polyfill changes;running
deno test
with the prebuilt binary will still show the old behaviour.Checklist
deno fmt
/deno lint
on modified files.Please let me know if anything needs tweaking.
This PR was generated by an AI system in collaboration with maintainers: @dsherret