Tomoki Aonuma

Results 15 comments of Tomoki Aonuma

https://github.com/denoland/deno/issues/16899#issuecomment-1910625997 > deno run -A npm:[email protected] install > > now downloads the browsers, but the process seems to just hang after fetching them all! It is due to a bug...

@cowboyd See https://github.com/denoland/deno/blob/v1.45.1/ext/node/polyfills/internal/child_process.ts#L178 . Here, the stream specifiers after the first three are discarded. We need to figure out how to handle this and pass it to `new Deno.Command()`. We...

https://github.com/denoland/deno/pull/24106 introduces changes to enable Deno's `node:child_process` polyfill to support a new type of stream. This might be useful as a reference when working on `Deno.Command`.

I've delved deeper into how we might implement this feature. Here's what I've found: We can use a pair of pipes returned by `deno_io::pipe::pipe()`[^pipe] as a stream. The writable end...

@cowboyd I think the chances are low. The challenges have been discussed in a PR[^pr] proposing an RFC about the exact API for that. As said in https://github.com/rust-lang/rfcs/pull/2939#issuecomment-640162653 , however,...