I am running a LAMP server on a VPS, and I have just installed socket.IO on it (with node 0.6.6 as npm refused to install on 0.7.0-pre). Now, I would like to test my installation with a simple example, such as a simple chat application, and also learn from it how to use it in my own apps.
There is however something strange with this. There seems to be a well-known 10-line chat example, but it has vanished from the developer's website and despite hundreds of references to it and hours or searching, I fail to find the actual example.
Hidden in the page source on http://socket.io I find a screenshot of an improved version with nicknames, still in 10 lines, but alas still no code example and it's also not public. The last example on http://howtonode.org/websockets-socketio looks like it already, but alas without a matching server-side script or html-page to embed it in.
Does anyone know what's going on with this? Could anyone provide a working small example (chat or multiplayer game) to demonstrate the basics of socket.IO, that works with the current version?
Edit: from the examples at the socket.io website, I assume that I would need "broadcasting", but it's not clear to me at all how to build a working chat app from this (even though they claim it's only 10 lines). :/