aboutsummaryrefslogtreecommitdiff
path: root/src/js/node/http.ts (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-07-11Avoid Object.getPrototypeOfjarred/fix-http-compressionGravatar Jarred Sumner 1-3/+13
2023-07-11use `Object.getPrototypeOf`Gravatar Hanaasagi 1-3/+1
2023-07-11small fix, check if the method has been reassigned.Gravatar Hanaasagi 1-2/+5
2023-07-10ignore checkGravatar Hanaasagi 1-2/+2
2023-07-10Merge branch 'main' into fix-httpGravatar Ai Hoshino 1-36/+96
2023-07-10call `writeHead` before send headersGravatar Hanaasagi 1-1/+5
Close: #3585
2023-07-10Fixes #3588 (#3590)Gravatar Jarred Sumner 1-36/+96
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-30fix: export `ClientRequest` and `OutgoingMessage` as part of the `node:http` ↵Gravatar Stijn Van Hulle 1-0/+2
package (#3470)
2023-06-29Fixes `node:http` and `node:stream` so `ytdl-core` works. (#3452)Gravatar dave caruso 1-0/+1810
* fix crash in readablestate * make node:https request+get actually use https * use a native readablestream in IncomingMessage * tweaks * fix abort crash * emit close by default * remove abort. this isnt a real function * add validate functions, fixup some other requested changes. not done yet * Update WebCoreJSBuiltins.cpp * Update JSReadableState.cpp * Add some missing exports --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>