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

My question is: is `http-proxy` capable of routing all requests from the 80 to another services based on the url? If a request comes at the port **80** with that...

I understand that the main purpose of `http-proxy` is to proxy http. Is it possible to set the target to ipc unix sock? ```js proxy.web(req, res, { target: '/tmp/webpack-dev-server.sock' });...

I have a HTTP web server and I'm trying to set it up behind a HTTPS proxy server. I've tried the example that's in the repository: https://github.com/http-party/node-http-proxy/blob/master/examples/http/proxy-https-to-http.js but I'm always...

The web proxy worked, but is it possible to connect a system level proxy and route all the computer's traffic through it? (more like a VPN)

I would like to open a thread regarding performance, because I think it requires a bit more of attention than it has actually received lately. Although this project does not...

I have an intermittent but very regular crash on v1.18 (was also on v1.17). ``` C:\Users\edwar\PhpstormProjects\iznik-client\node_modules\http-proxy\lib\http-proxy\common.js:221 if (previousValue in config) { ^ TypeError: Cannot use 'in' operator to search for...

I have the following code in my heroku app: ``` var http = require('http'), httpProxy = require('http-proxy'); var proxy = httpProxy.createProxyServer({}); http.createServer(function(req, res) { proxy.web(req, res, {target:req.url, prependPath:false}) }).listen(process.env.PORT ||...

I found that for Node 10+ if a request is cancelled before being proxied, the proxyServer emits an error instead of an `econnreset` event. This does not happen for <...

Sometimes, errors are thrown from line 115 here: https://github.com/http-party/node-http-proxy/blob/9bbe486c5efcc356fb4d189ef38eee275bbde345/lib/http-proxy/passes/ws-incoming.js#L112-L118 ``` Error: This socket has been ended by the other party at TLSSocket.writeAfterFIN [as write] (net.js:441:14) at ClientRequest. (/home/person/cypress/packages/server/node_modules/http-proxy/lib/http-proxy/passes/ws-incoming.js:115:16) at ClientRequest.emit...