Javascript – How to communicate over TCP sockets from JavaScript

ajaxjavascriptsocketsuser-interface

I'm thinking about how limiting it is for AJAX apps to have to poll for updates, when what would be ideal is for javascript to be able to set up a real two way connection to the server. I'm wondering if there is some method of integrating javascript with a browser plugin that can make a tcp connection so that I could pass data into and out of the browser plugin.

Best Solution

WebSockets is designed to solve this problem.