Socket.IO without http server?
Socket.io, and WebSockets in general, require an http server for the initial upgrade handshake. So even if you don’t supply Socket.io with an http server it will create one for you. The issue is that the second parameter in your io.listen(3000, ‘0.0.0.0’) is ignored by Socket.io. If you need to control which network interface to … Read more