I am giving a try to Node.js with socket.io
Now here is my scenario i am ubuntu 12.04 user and i have folder pp on desktop
inside that i am putted server f
You are not connecting to your server, this is wrong:
var iosocket = io.connect();
this is right:
var iosocket = io.connect('http://localhost:8080');
Also your port 8080 is used on your server by "http-proxy", try an other port.