stream-http icon indicating copy to clipboard operation
stream-http copied to clipboard

Streaming node http in the browser

Results 25 stream-http issues
Sort by recently updated
recently updated
newest added

Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `[email protected]` for the project I'm working on. Problem started to arise with empty...

`stripe-node`'s `nodeHttpClient` depends on a socket event being emitted by the HTTP request before it ends the request. See: [NodeHttpClient.js#L66](https://github.com/stripe/stripe-node/blob/master/lib/net/NodeHttpClient.js#L66)

Hi, disclaimer: not an expert in JS ! I can't find anywhere the typescript declarations of stream-http. I used the @types/node for getting the definitions of standard types like IncomingMessage...

This package has ua-parser-js package as one of devDependencies, and this package is in package.json ``` "devDependencies": { ... "ua-parser-js": "^0.7.28", ... } ``` According to CISA, _CISA urges users...

In the readme it says > The following browsers support true streaming, where only a small amount of the request has to be held in memory at once: > >...

I am using Strapi 4 in one of my projects. While installing Strapi project, one of the dependencies is looking for stream-http 3.2.0. But, I get the error "No matching...

Currently omitting credentials by setting [`credentials: "omit"` on `Request`](https://developer.mozilla.org/en-US/docs/Web/API/Request/credentials) isn't supported by `stream-http`. It'd be nice if there were a way to do that. Maybe either allowing `withCredentials` to be...

Calling `req.abort()` does not emit `close` which is the behavior of Nodejs's `http`: https://nodejs.org/api/http.html#http_request_destroy_error Related to #26, but not a duplicate I think since this isn't about the request still...