Thank for the plugin.
I made a client using the "socket-websockets" version but i got this error when running it:
Uncaught TypeError: Can't add property socket, object is not extensible"
solved by adding this line inside the "runtime.js" after the line "this.lastPort = 80;":
his.socket = undefined;
Here is a working simple client+server example:
Client: http://www.mediafire.com/?qvadyqwqwx692ya
Server: http://www.mediafire.com/?2soipgu5ug6s3wv
The server is done in ruby with em-websocket so you will need them in order to run it.