Running socket.io on Shared Hosting
问题 I am using a shared hosting server from A2Hosting where I want to run a socket.io server (application), here is what I have done so far: SSH'ed into server Installed node Run / started the socket.io server (application) var server = require('http').createServer(), io = require('socket.io')(server), port = 58082; server.listen(port, my - domain - name); But my client (the browser) can't connect to the server. I have tried running the same socket.io sever (application) on a local Linux machine