I am going to develop an instant messaging application that runs in the browser.

What browsers support the WebSocket API?

link|improve this question
47  
We should try to keep these answers up to date, right? I presume that's preferable to re-asking it. – dreeves Apr 22 '10 at 22:46
4  
There's a good community wiki about HTML5 websockets: stackoverflow.com/questions/4262543/using-html-5-websockets – Mr. Pallazzo Nov 24 '10 at 7:16
socket.io – skyl Apr 21 '11 at 18:17
how many hours it will take to implement websocket in a website? – Viduthalai Feb 15 at 5:51
feedback

25 Answers

Client side

  • Hixie-75:
    • Chrome 4.0 + 5.0
    • Safari 5.0.0
  • HyBi-00/Hixie-76:
  • HyBi-07+:
  • HyBi-10:
    • Chrome 14.0 + 15.0
    • Firefox 7.0 + 8.0 + 9.0 + 10.0 - prefixed: MozWebSocket
    • IE 10 (from Windows 8 developer preview)
  • HyBi-17/RFC 6455
    • Chrome 16
    • Firefox 11

Any browser with Flash can support WebSocket using the web-socket-js shim/polyfill.

See caniuse for the current status of WebSockets support in desktop and mobile browsers.

See the test reports from the WS testsuite included in Autobahn WebSockets for feature/protocol conformance tests.


Server side

It depends on which language you use.

In Java/JEE:

  • Jetty 7.0 supports it (very easy to use)
  • GlassFish 3.0 (very low level and sometimes complex), Glassfish 3.1 has new refactored Websocket Support which is more developer friendly
  • Caucho Resin 4.0.2 (not yet tried)

Some other Java implementations:

In C#:

In PHP:

In Python:

In C:

In Node.js:

  • Socket.io : Socket.io also has serverside ports for Python, Java, Google GO, Rack
  • sockjs : sockjs also has serverside ports for Python, Java, Erlang and Lua
  • WebSocket-Node - Pure JavaScript Client & Server implementation of HyBi-10.

Vert.x (also known as Node.x) : A node like ployglot implementation running on a Java 7 JVM and based on Netty with :

  • Support for Ruby(JRuby), Java, Grovy, Javascript(Rhino/Nashorn), Scala, ...
  • True threading. (unlike Node.js)
  • Understands multiple network protocols out of the box including: TCP, SSL, UDP, HTTP, HTTPS, Websockets

Pusher.com is a Websocket cloud service accessible through a REST API.

For other language implementations, see the Wikipedia article for more information.

link|improve this answer
9  
+1 for keeping it up to date. Opera will also have Websockets support in 10.70. – Sasha Chedygov Oct 29 '10 at 5:27
Right, I think they renamed Opera 10.70 in Opera 11 opera.com/browser/next – Cbe317 Oct 29 '10 at 11:31
1  
IE9 will. At the moment it is still in beta. – Tony Nov 18 '10 at 15:55
3  
@Tony: IE9 does not support WebSockets. There's experimental support available as an add-on in HTML5 Labs, but not shipped and ready. – Shog9 Mar 22 '11 at 20:54
Excellent writeup. Thanks! – Jens Roland Jun 15 '11 at 18:26
show 2 more comments
feedback

A good workaround for those browsers that don't yet have native WebSocket support is with this implementation that uses flash to provide WebSocket support to JavaScript:

http://github.com/gimite/web-socket-js

This allows you to just code to WebSocket, and for browsers that have native support it'll use that. Otherwise it falls back to using flash for the support.

link|improve this answer
feedback

chromium now supports websockets

http://blog.chromium.org/2009/12/web-sockets-now-available-in-google.html

link|improve this answer
feedback

The latest versions of browsers have support for the WebSocket API today. Here are the common browsers that support it:

  • Apple Safari (as of v5.0.1)
  • Google Chrome (as of v6)
  • Microsoft Internet Explorer (as of v10)
  • Mozilla Firefox (as of v6 with "Moz" prefix, as of v11 without prefix)
  • Opera (as of v10.70)

If you're looking for better legacy support have a look at the "Comet" model. There are frameworks today that make its implementation simpler, such as Nitrogen. Have a look at their chat room example.

You may also want to keep an eye on Google App Engine, which with its Channel API (soon available) will support the Comet model with a Web Sockets API interface, meaning that your client-side code won't need to know whether the server is communicating via open HTTP requests or web sockets. You can probably port their interface for use with your own server architecture too.

link|improve this answer
Which technologically leading browser would that be? – Anne Aug 20 '09 at 14:00
3  
Here is information about the implementation of the Web Sockets API in Mozilla browsers: bugzilla.mozilla.org/show_bug.cgi?id=472529 And here is information about the implementation in WebKit browsers: bugs.webkit.org/show_bug.cgi?id=27490 I believe you can try these features with a nightly build of either browsers. – Blixt Aug 20 '09 at 14:16
On second thought it's very possible that you have to patch the code yourself to get the functionality. In any case, I wouldn't go about using it even for experimental web sites for another couple of months at least. – Blixt Aug 20 '09 at 14:21
Ok, so you know about the same as me then :-) – Anne Aug 20 '09 at 22:11
1  
can you provide a link to the rumor that IE 9 will support WebSockets? I've searched in depth and also have been listening for any mention of this and I've heard nothing about that. – kanaka Oct 19 '10 at 22:16
feedback

There is a beautiful example how to use websockets: http://armstrongonsoftware.blogspot.com/2009/12/comet-is-dead-long-live-websockets.html

Works for me in WebKit and Chrome with some minor tweaks in Joe's code.

link|improve this answer
feedback

Important to know:

Websocket support has been DROPPED from both Opera and Firefox 4 in December 2010 due to (general, non-browser specific) security issues:

http://hacks.mozilla.org/2010/12/websockets-disabled-in-firefox-4/

It seems the issue does not lie with websockets per se but with other Internet devices that proxy requests, and disabling websockets is just a workaround until the general issue is fixed.

Also, it seems the protocol (but not the API) is expected to change, even now e.g. Opera refers to which version of the protocol they actually implement. So even if it were turned on (where it is available at all) it is far from "production ready". This still is an experimental feature.

link|improve this answer
1  
The protocol has changed from hixie to ietf-hybi. The API is indeed static and seperately defined by the HTML5 WebSocket group. – Raynos Apr 21 '11 at 11:31
feedback

node.js is a server side JavaScript implementation. There exist several node.js implementations of WebSocket. This allows you to have JavaScript to JavaScript communication.

https://github.com/Worlize/WebSocket-Node

http://github.com/ncr/node.ws.js

http://github.com/alexanderte/websocket-server-node.js

http://github.com/Guille/node.websocket.js/

http://github.com/zimbatm/nodejs-http-websocket

link|improve this answer
feedback

socket.io and node.js is awesome Look at my multi-rooms chat demo

http://chat.solisoft.net

link|improve this answer
502 nginx .. nice frontend server tho. – skyl Apr 22 '11 at 22:12
feedback

js.io implements WebSockets for most browsers, using Orbited. (however, the site is currently down).

Using js.io, you can develop your app right now using the WebSocket API. And when browser will implement WebSockets natively, you'll get more performances.

link|improve this answer
feedback

You can also use Hookbox which falls back to long-polling if websocket support is unavailable in the browser.

http://hookbox.org

http://bitshaq.com/2010/07/30/a-simple-experiment-with-hookbox/

link|improve this answer
feedback

As of March 2012 from caniuse.com :

  • IE10+
  • Firefox 8+
  • Chrome 14 + enter image description here
link|improve this answer
Caniuse is a great resource! – Kriem Apr 10 at 8:52
feedback

Currently no browser supports Web Sockets. Also, Web Sockets is two standalone specifications, and no longer part of HTML5: http://www.w3.org/TR/websockets/ and http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol

link|improve this answer
Update this info----------- Now these browsers suport web socket stackoverflow.com/questions/1252829/… – Jatin Dhoot Jul 4 '11 at 7:25
feedback

Try http://jwebsocket.googlecode.com

link|improve this answer
feedback

It looks like IE 9 RC, Firefox 4 and Opera 11 don't support web sockets.

Apparently there is a security issue with it at the moment

This article http://hacks.mozilla.org/2010/12/websockets-disabled-in-firefox-4/ seems to be saying that other browsers (chrome and safari) will soon remove web sockets from their features.

But you can 'fake' a web socket using silverlight/flash as demonstrated here: http://html5labs.cloudapp.net/WebSockets/ChatDemo/wsdemo.html and https://github.com/gimite/web-socket-js

And then just wait for the browsers to catch up.

link|improve this answer
feedback

HI,

http://html5test.com/

look under communication.hope this help.

link|improve this answer
feedback

The best site for HTML5 and related functionality is http://caniuse.com

link|improve this answer
feedback

The WebSocket standard isn't final yet, although version 8 is probably pretty close to what the final will be. The security problem (referred to in one post above) has been solved and Opera / Firefox no longer default to disabled websockets. I'm running version 8 tests and will regularly update information on browser tests at this blog.

link|improve this answer
feedback

I'm afraid the only place you're going to find WebSocket support is in the trunk builds of Firefox at the moment. And as far as I know, the work there is still in progress. WebKit browsers (Safari & Chrome, for example) are just getting started on their implementations and they are not even available in the nightly builds.

link|improve this answer
feedback

Jabbers BOSH protocol seems to fit instant messaging very well. Give strophe a try with a server supporting BOSH such as ejabberd.

link|improve this answer
feedback

We are keeping an up-to-date list of WebSocket supporting browsers on our Java WebSocket project website: http://jwebsocket.org/browsers.htm

link|improve this answer
I forgot to mention, we will have an applet bridge soon and at some point a flash bridge as well in order to support all browsers... – DrCoPe Mar 22 '10 at 10:57
feedback

My WebSockets example works with Safari and Chrome on Mac. Firefox 4 Beta can't open the connection, on Windows it sometimes work with Chrome :)

http://bohuco.net/blog/2010/07/html5-websockets-example/

link|improve this answer
feedback

Opera 11 will support WebSockets based on the 76 draft, one can test it out with the current 10.70 alpha:
http://my.opera.com/desktopteam/blog/2010/10/11/websockets

link|improve this answer
feedback

Also worth checking out on the server side is our hosted websockets service Pusher :) http://pusherapp.com

link|improve this answer
Does it work on all browsers? IE6? – Johnny Nov 9 '11 at 19:23
feedback

The latest mobile safari supports websockets now...

link|improve this answer
feedback

The Atmosphere Framework supports Groovy/Scala/JRuby and Java and have both client and server side.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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