What are good resources for learning HTML 5 WebSockets?

link|improve this question
2  
Make it a community wiki then! – Paul Creasey Nov 24 '10 at 0:56
1  
@Enrico Pallazzo Explicitly making it Community Wiki has been removed. Simply edit or answer it enough times. :) – alex Nov 24 '10 at 0:59
1  
Added a link over at the Node.js TagWiki: stackoverflow.com/tags/node.js/info It's already a common question on the tag and there will be a lot more in the future when WebSockets gain traction – Ivo Wetzel Nov 24 '10 at 1:23
2  
It would be better to put this on the [websocket] tag wiki page. – Jonas Nov 25 '10 at 0:14
1  
@Enrico It's still not a question, it's a blog post, and doesn't belong here. – meagar Nov 25 '10 at 15:46
show 10 more comments
feedback

closed as not constructive by sixlettervariables, Dennis, Bill the Lizard May 14 at 14:06

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

8 Answers

up vote 89 down vote accepted

HTML5 WebSockets?

WebSockets is a technology providing for bi-directional, full-duplex communications channels, over a single Transmission Control Protocol (TCP) socket. It is designed to be implemented in web browsers and web servers but it can be used by any client or server application. The WebSocket API is being standardized by the W3C and the WebSocket protocol is being standardized by the IETF. Since ordinary TCP connections to ports other than 80 are frequently blocked by administrators outside of home environments it can be used as a way to overcome these restrictions and provide similar functionality with some additional protocol overhead while multiplexing several WebSocket services over a single TCP port.

Used source: Wikipedia

You can find the official W3C documentation about HTML5 Websockets here.

Why this new technology?

This technology enables programmers to create interactive real-time web applications, quickly and reliably.

Browser support

  • Chrome 4.0
  • Firefox 4.0 beta
  • Opera 11 (or 10.70) alpha
  • Safari 5.0.2
  • iOS 4.2 (Mobile Safari)
  • Other browsers with Flash support can use web-socket-js fall-back.

Used source: Stackoverflow

caniuse.com has an up-to-date table of WebSockets support in browsers.

Browser polyfills for WebSocket support

Source: HTML5 Cross browser Polyfills

How do I test browser support?

These links will report WebSockets support:

This Javascript will report if your browser supports HTML5 WebSockets:

if (window.WebSocket) {
  alert("WebSockets is supported in your browser.");
} else {
  alert("WebSockets is NOT supported in your browser.");
}

or for Firefox use:

if (window.MozWebSocket) {
  alert("WebSockets is supported in your browser.");
} else {
  alert("WebSockets is NOT supported in your browser.");
}

Used source: Pro HTML5 Programming (book)

Simple JavaScript Example

if ("WebSocket" in window) {
    var ws = new WebSocket("ws://echo.websockets.org/");
    ws.onopen = function() {
        console.log("WebSockets connection opened");
        ws.send("a test message");
    }
    ws.onmessage = function(e) {
        console.log("Got WebSockets message: " + e.data);
    }
    ws.onclose = function() {
        console.log("WebSockets connection closed");
    }
} else {
    alert("No WebSockets support");
}

Existing WebSocket servers

Tutorials and references

StackOverflow community wiki resources

Websocket vs ____

Demos

Videos

Useful Books

link|improve this answer
feedback

Q&A's on Stackoverflow

HTML5

Development & How-to's

HTML5 Websockets

Websocket Server

Browser/(i)OS Support

Webbased Instant Messaging with audio/video (webcam) support

Security

link|improve this answer
feedback

HTML5 Web Sockets and Proxy Servers

WebSocket connections use standard HTTP ports (80 and 443), which has prompted many to call it a "proxy server and firewall-friendly protocol." Therefore, HTML5 Web Sockets do not require new hardware to be installed, or new ports to be opened on corporate networks--two things that would stop the adoption of any new protocol dead in its tracks. Without any intermediary servers (proxy or reverse proxy servers, firewalls, load-balancing routers and so on) between the browser and the WebSocket server, a WebSocket connection can be established smoothly, as long as both the server and the client understand the Web Socket protocol. However, in real environments, lots of network traffic is routed through intermediary servers.

A picture is worth a thousand words. Figure 1 shows a simplified network topology in which clients use a browser to access back-end TCP-based services using a full-duplex HTML5 WebSocket connection. Some clients are located inside a corporate network, protected by a corporate firewall and configured to access the Internet through explicit, or known, proxy servers, which may provide content caching and security; while other clients access the WebSocket server directly over the Internet. In both cases, the client requests may be routed through transparent, or unknown, proxy servers (for example, a proxy server in a data center or a reverse proxy server in front of the remote server). It is even possible for proxy servers to have their own explicit proxy servers, increasing the number of hops the WebSocket traffic has to make.

Figure 1—Web Sockets architecture with explicit and transparent proxy servers

Unlike regular HTTP traffic, which uses a request/response protocol, WebSocket connections can remain open for a long time. Proxy servers may allow this and handle it gracefully, but they can also throw a monkey wrench in the works.

Source: How HTML5 Web Sockets Interact With Proxy Servers

link|improve this answer
feedback

Can I suggest a section for third party tools? I've been using pusherapp which is currently in public beta and so far have had nothing but a fantastic experience with it. It makes writing real time web apps super easy.

link|improve this answer
Third party tools are often at a higher abstraction layer that limits or mitigates the learning curve. Because the question is about learning HTML 5 Web Sockets, I'd suggest a new question devoted to tools for HTML 5 Web Sockets. – John K Nov 25 '10 at 18:47
feedback

HLL WebSocket Server Demonstration (Java) : Includes online and downloadable framed browser based GUI for testing server interaction.

link|improve this answer
feedback

Here's a new and great tutorial for a real time survey using html5 websockets

http://www.netmagazine.com/tutorials/code-real-time-survey-html5-websockets

link|improve this answer
feedback

The Atmosphere framework also implements a WebSocket server.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.