node-http-proxy icon indicating copy to clipboard operation
node-http-proxy copied to clipboard

A full-featured http proxy for node.js

Results 200 node-http-proxy issues
Sort by recently updated
recently updated
newest added
trafficstars

As previously attempted in http-party/node-http-proxy#1307 Following the deprecation recommendation in http documentation: * https://nodejs.org/docs/latest-v8.x/api/util.html#util_util_puts_strings * https://nodejs.org/docs/latest-v8.x/api/util.html#util_util_error_strings

The cause of this is that when proxying api requests to a hostname, node will perform a dns query for every single request, which adds unnecessary overhead. While I was...

Hi, the server I'm proxying the requests to responds with a 307 if we need to send the request to a different URL (and provides the host/path in the response...

I'm using webpack-dev-server (which uses node-http-proxy) to proxy EventSource connections. Demo project: https://github.com/carlhopf/webpack-dev-server-proxy-eventsource When calling ```eventSource.close()``` client/browser side, the node-http-proxy upstream connection is not closed. I fixed this attaching a...

The use of the [`socket` event to drive `proxyReq` and allow header modification](https://github.com/http-party/node-http-proxy/blob/master/lib/http-proxy/passes/web-incoming.js#L131) appears to be problematic when used with `keepAlive` and `maxSockets` on an HTTP agent. When a socket...

While building a reverse proxy with ha-lb capabilities I found out that proxy.web() does not play totally well with retries if a request body is present: it turns out the...

Dears, I have found that toProxy option has an issue and modified the code like below which is working fine. Modified snippet in web-incoming.js var httpOptions=common.setupOutgoing(options.ssl || {}, options, req);...

It's the third time I install by mistake the npm package called [node-http-proxy](https://www.npmjs.com/package/node-http-proxy), which is a different package. Would it be possible to have the same name for both the...