I am developing a nodeJS websocket proxy server. The use case is when a websocket request comes, I will check its credentials, add new headers and then based on its group (from user id) to redirect the websocket connection to its target webscoket server. I found most of the packages (such as node-http-proxy) supports single target. Is there a package supporting multiple targets ?
Proxying websockets with single "proxyServer" to multiple targets
876 Views Asked by Conrad At
2
From the README of node-http-proxy section, "Setup a stand-alone proxy server with custom server logic":
Therefore, you should be able to add your decision code in the callback function and then make a
proxy.web()
call with your determinedtarget
.