Skip to content

Commit

Permalink
websocket -> WebSocket
Browse files Browse the repository at this point in the history
Made the word "WebSocket" casing consistent.
  • Loading branch information
cboden committed Jan 23, 2012
1 parent 00a759b commit cda03e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions posts/websockets.md
@@ -1,10 +1,10 @@
feature: websockets
feature: WebSockets
status: caution
tags: polyfill
kind: api
polyfillurls: [Socket.io](http://socket.io/), [web-socket-js](https://github.com/gimite/web-socket-js)

Making your app real-time is a huge boost and [Socket.io](http://socket.io/) is a Node+Javascript framework that helps with downlevel transports for browsers lacking native websocket support (and supports IE6+). However be prepared to tune your AJAX polling or Comet in order to meet the needs of your app.
Making your app real-time is a huge boost and [Socket.io](http://socket.io/) is a Node+Javascript framework that helps with downlevel transports for browsers lacking native WebSocket support (and supports IE6+). However be prepared to tune your AJAX polling or Comet in order to meet the needs of your app.

[web-socket-js](https://github.com/gimite/web-socket-js) is a natural polyfill for the Javascript WebSocket API transferring data through Flash Sockets when WebSockets aren't available.

Expand Down

0 comments on commit cda03e8

Please sign in to comment.