doc: document Node.js fetch() differences from standard#63676
doc: document Node.js fetch() differences from standard#63676Aanushka001 wants to merge 1 commit into
Conversation
|
Hi @Aanushka001! π Thank you for taking the time to contribute documentation for the Node.js I wanted to let you know that this PR overlaps significantly with two existing pull requests that have already been submitted:
All 4 items covered in your PR ( Also, a small note: your PR mentions "no forbidden headers enforcement," but this was corrected in #62236 by @bakkot's review β it should be "fewer forbidden headers, with Host still restricted," as Node.js does still restrict certain headers like Given this overlap, would you consider closing this PR in favor of the earlier, more comprehensive #62236 (and partially #61837)? Your help reviewing or contributing to those existing PRs would be very valuable! Thank you again for your work on this. π |
|
Closing this - it's a duplicate of #62236 which already covers these differences more comprehensively. |
This PR adds documentation for intentional differences between Node.js's
fetch()implementation (based on undici) and the WHATWG Fetch Standard,covering:
new Response(asyncIterable)as an addition to the standardRefs: #52163