Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(node/child_process): ensure stdio pipes exist when spawn fails #28573

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

gopoto
Copy link
Contributor

@gopoto gopoto commented Mar 21, 2025

Closes #18667

When spawning a process using the Node child_process polyfill and stdio: "pipe",
the runtime would only set up stdin, stdout, and stderr after Deno.Command.spawn()
succeeded. If the underlying command failed to spawn (e.g. permission denied or not found),
these streams remained null, leading consumers like esbuild (used by Vite) to throw
Cannot read properties of null (reading 'on') when attaching handlers.

This patch:

  • Pre‑allocates fallback PassThrough streams for stdin, stdout, and stderr when
    stdio is 'pipe' so that they’re always non‑null, even if spawn fails. Node guarantees
    the same for pipe streams.
  • Adjusts the constructor to overwrite these stubs with real streams once the child is spawned.
  • Adds a unit test to tests/unit_node/child_process_test.ts exercising a spawn failure with
    stdio: "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

  • Added a unit test reproducing the failure.
  • Ran deno fmt / deno lint on modified files.
  • Referenced the issue being fixed.

Please let me know if anything needs tweaking.


This PR was generated by an AI system in collaboration with maintainers: @dsherret

Sorry, something went wrong.

Signed-off-by: Gene Parmesan Thomas <201852096+gopoto@users.noreply.github.com>
@dsherret dsherret marked this pull request as ready for review March 21, 2025 14:29
@dsherret dsherret requested review from kt3k and crowlKats March 24, 2025 17:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Error running example of 'deno task dev'
1 participant