So we have Websockets:
var socket = new WebSocket("ws://some/", ["soap", "wamp"]
WebSockets are made for lowlatency connect and sending and recieving messages, but why we cant use simple sockets in web, like var socket = new Socket("tcp://some:6413")
and cant do magic like socket.sendByte(0xFF)
socket.readByte()
and etc.
It would discover much more opportunities for using it for extra-lowlatency, for sharing images, videos, online HTML5 games for fun..
I know what Flash/Unity/Java can do this, but why JS and HTML5 still didn't do this ? Or did they?