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

Convenient HTTP/HTTPS route proxy for cross-domain request, request forward.Support using as express connect middleware

Results 4 http-route-proxy issues
Sort by recently updated
recently updated
newest added

My mission: I want to proxy/tunnel all requests from https://domain.com to http://127.0.0.1:80 127.0.0.1:80 would act as a reverse proxy server then the http-route-proxy would return the data that the reverse...

NodeJS 4.4.7 ~/project/node_modules/http-route-proxy/node_modules/http-proxy/node_modules/utile/lib/index.js:41 return utile.inflect = require('i')(); ^ TypeError: Cannot set property inflect of # which has only a getter at Object.defineProperties.inflect.get (/home/vagrant/aic-ozone/ui/node_modules/http-route-proxy/node_modules/http-proxy/node_modules/utile/lib/index.js:41:28) at Object. (/home/vagrant/aic-ozone/ui/node_modules/http-route-proxy/node_modules/http-proxy/node_modules/utile/lib/index.js:281:25) at Module._compile (module.js:409:26)

I created a proxy which should redirect to google according to https://www.npmjs.com/package/http-route-proxy . `proxyServer.proxy([ { from: 'localhost:9000', to: 'www.google.com', https: true, headers: { req: {origin: 'www.google.com', referer: 'www.google.com'}, res: {'access-control-allow-origin':...

I'd find more documentation useful. I like that common scenarios are covered with good examples, but I don't see how to branch out from there. For example, I'm trying to...