node-http-proxy
node-http-proxy copied to clipboard
A full-featured http proxy for node.js
I often get the following error when I run tests through cypress. I suppose that connections from the browser are reseted and so the socket is closed. ``` error: write...
Hello community, unfortunately the https proxy doesn't work for me. The browser reports the following: ERR_PROXY_CERTIFICATE_INVALID It works great without https. Can it be due to TLS? Isn't that supported?
This provides support for sending along a `servername` with encrypted requests. It should address #1133.
I haven't seen any activity or commits for two years now. I am wondering if this project has been abandoned and should not be used? Thanks!
I have made a simple proxy and using the following code to redirect the requests. ```javascript proxy.web(req, res, {changeOrigin: true, target: requested_host}) ``` Whenever I set target a unrestricted site...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | |---|---| | follow-redirects | [`1.9.0` -> `1.14.8`](https://renovatebot.com/diffs/npm/follow-redirects/1.9.0/1.14.8) | ### GitHub Vulnerability Alerts #### [CVE-2022-0155](https://nvd.nist.gov/vuln/detail/CVE-2022-0155) follow-redirects is vulnerable...
Sometimes the attribute 'options.target' is not a string and is an object like: ```json { "protocol": "http:", "slashes": true, "auth": null, "host": "some.hostname.fake", "port": null, "hostname": "some.hostname.fake", "hash": null, "search":...
import { defineConfig } from 'vite' export default defineConfig({ server:{ host:'0.0.0.0', port:6001, proxy:{ '^/(api|resources)': { target: 'http://192.168.1.101', changeOrigin: true, ws:true, rewrite: (path) => path.replace(/^\/api/, '') }, } }, request http://localhost:6001/resources/video/2022-07-12/bcaa15e28738e89fb3d3706f6e5628e.mp4...
I'm trying to run a proxy server on port 8081 that can re-route http traffic and socket.io traffic. I'm using express server because I use passport for authentication. I can...
I've found this issue, but I didn't understand whether it's possible or not: https://github.com/http-party/node-http-proxy/issues/609 I want to be able to view proxied packets in a similar way WireShark shows them:...