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

Hi! A vulnerability in the package "follow-redirects" [CVE-2022-0155](https://nvd.nist.gov/vuln/detail/CVE-2022-0155) was found. It is fixed with the version 1.14.7. Is it possible to update to the latest version? Thanks!

Hi, We're using http-proxy module to proxy requests to other modules ( we don't have websocket requests). The service is deployed on RKE. ( RKE v2.5.8, docker v20.10.7, ubuntu 20.04...

Hi, I have a proxy (in http and https. both with web sockets) that is working but if the target application (also in node) is stopped, the proxy receives the...

We've been seeing some ECONNRESET errors in our proxy application. The errors are being handled so its not causing any major issues, but we're worried there might be connectivity issues...

hi guys, I submitted an issue there, but it could be this project's issue. https://github.com/chimurai/http-proxy-middleware/issues/691 Thanks

The following command throws a "**Parse Error: Expected HTTP/**": ```curl 'http://192.168.88.32:8203/' -H 'If-Modified-Since: Thu, 01 Jan 1970 00:00:00 GMT'``` *(Command taken from a Safari browser, removed all HTTP headers that...

I configure proxy setting `selfHandleResponse` option to true and pass onProxyRes with appropriate function. I expect that target will not be required , because docs state > if set to...

Hi, I have created a proxy server between my client device and server that I use to re-format the server response before it hits the client device. I have used...

hi. how i can access to list of clients ? var proxy = httpProxy.createProxyServer({ws: true}); how ? proxy.ws.clients is undefined. req.socket.server has no clients anywhere . i need to foreach...

I want to rewrite request cookie using following code, but didn't work. ```javascript proxy.on('proxyReq', function (proxyReq, req, res) { proxyReq.setHeader('cookie', 'SESSION=123'); }); ``` And is there a way to find...