stream: fix Writable.toWeb() desiredSize for non-object-mode#62986
Open
mcollina wants to merge 1 commit intonodejs:mainfrom
Open
stream: fix Writable.toWeb() desiredSize for non-object-mode#62986mcollina wants to merge 1 commit intonodejs:mainfrom
mcollina wants to merge 1 commit intonodejs:mainfrom
Conversation
Writable.toWeb() used a plain { highWaterMark } as the queuing
strategy for non-object-mode streams, which meant no size function
was provided. The WritableStream defaulted to counting each chunk
as size 1, so desiredSize was incorrect (e.g., a 3-byte Uint8Array
was counted as size 1 instead of 3).
Add a size() function to the strategy that mirrors how the Node.js
stream computes chunk length: byteLength for typed arrays, length
for strings/buffers, falling back to 1.
Fixes: nodejs#56269
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #62986 +/- ##
==========================================
+ Coverage 89.61% 89.66% +0.04%
==========================================
Files 706 707 +1
Lines 219136 219506 +370
Branches 41981 42077 +96
==========================================
+ Hits 196376 196815 +439
+ Misses 14671 14604 -67
+ Partials 8089 8087 -2
🚀 New features to boost your workflow:
|
Member
Technically, I think the Node.js side deals exclusively in |
Renegade334
approved these changes
Apr 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Writable.toWeb() used a plain
{ highWaterMark }as the queuing strategy for non-object-mode streams, which meant nosizefunction was provided. The WritableStream defaulted to counting each chunk as size 1, sodesiredSizewas incorrect (e.g. a 3-byteUint8Arraywas counted as size 1 instead of 3).Add a
size()function to the strategy that mirrors how the Node.js stream computes chunk length:byteLengthfor typed arrays,lengthfor strings/buffers, falling back to 1.Fixes: #56269