James M Snell
James M Snell
Just something to remember... in https://github.com/pinojs/thread-stream/blob/main/lib/worker.js, when the destination error event is emitted, an 'ERROR' message is posted back to the origin thread... https://github.com/pinojs/thread-stream/blob/main/lib/worker.js#L21-L26: ```js destination.on('error', function (err) { parentPort.postMessage({...
@ljharb... my apologies if this has already been discussed and I just missed it, but what would be expected to happen in the following case: ```js { using foo =...
src: quic
Updated alternatiive to #38233 ... Significant changes here. This focuses entirely on the internal API surface and does not expose any public API yet. That is intentional to allow us...
Note: it should be possible to remove the `Buffer` use entirely...
Node.js' socket API allows for a `allowHalfOpen` option whose behavior is simply defined as: If `allowHalfOpen=false`, when a socket *receives* a fin from the peer, the socket will be automatically...
What is the current status of this proposal? Is there still an intent on moving it forward?
First off, a thank you @littledan for pointing me at this proposal. Overall I think it's a great start and a great addition to the API surface here. It should...
Adds utility methods to akin to the Body mixin for fully reading the contents of a ReadableStream as either text, a Blob, or a Uint8Array. This is a first pass...
Adds the ability to configure the per-write flush behavior for both `GzipAsyncOutputStream` and `BrotliAsyncOutputStream`, keeping the current defaults in place. By default, these implementations will flush only when either `flush()`...