Multiple socket.io servers sharing a single HTTP/S server
问题 With ws, Node.js WebSocket library, it is possible to have multiple servers sharing a single HTTP/S server. Is it possible to do the same with socket.io? I need to have two WebSocket servers on the same HTTP server, one for socket.io and another one for Apollo subscriptions. I can set up Apollo subscription server with a Websocket server but not for socket.io, socket.io only accepts HTTP server. I thought in doing something like this: const socketioWsS = new WebSocket.Server({ noServer: true