gpt4 book ai didi

node.js - 如何代理 websocket 连接

转载 作者:行者123 更新时间:2023-12-02 14:02:36 43 4
gpt4 key购买 nike

我在 github.com/facebook/create-react-app 上遇到了这个问题: https://github.com/facebook/create-react-app/issues/8527

基本上我是用我自己的服务器代理 webpack-dev-server。 HTTP 请求没问题,但 Websocket 请求将失败并出现以下错误:

WebSocket connection to 'ws://localhost:3016/sockjs-node' failed

因为有一个 Websocket 服务器监听 3015 而不是 3016。

所以我可能希望代理一个 websocket 请求。我可以像这样代理 HTTP 请求:

app.use((req,res,next) => {

// proxy to dev server

console.log('path:', req.path);
console.log('url:', req.url);

const r = http.request({
method: req.method,
path: req.path,
host: 'localhost',
protocol: 'http:',
port: 3015 // webpack-dev-server is listening on 3015
}, r => {
r.pipe(res);
});

r.once('error', next);
req.pipe(r);

});

app.listen(3016); // app listens on 3016 and forwards some requests to webpack-dev-server listening on 3015

有人知道代理 websocket 请求的好方法吗?

这是我尝试代理 ws 连接:https://github.com/websockets/ws/issues/1697

最佳答案

您可以使用一个非常稳定且经过验证的库http-proxy,它被许多其他反向代理和负载均衡器等用作依赖项。它支持代理 websocket。它也非常容易使用。这是 repository 中的最小示例

httpProxy.createServer({
target: 'ws://localhost:3016',
ws: true
}).listen(3001);

关于node.js - 如何代理 websocket 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60328836/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com