Node.js Server Is Not Working Properly
I'm trying to make a simple text chat for example. Server start and work. My client connects fine and it shows in the log of the console: C:\inetpub\wwwroot\3>node app.js inf
Solution 1:
I have answered some similar questions regarding socket.io, trying to avoid copying and pasting the same stuff :) - cf info - unhandled socket.io url
Essentially there has been a minor change in API, try changing socket.on('connection'
to socket.sockets.on('connection'
Hope that helps.
Post a Comment for "Node.js Server Is Not Working Properly"