Good beginners tutorial to socket.io?

I am very new to the world of webdevelopment and jumped into the bandwagon because I find the concept of HTML5 very interesting. I am fairly confident on working with canvas and would now like to move over to websockets part of it. I have come to understand socket.io is by far the framework to work with, when we want to work with web sockets.

Any pointers on what tutorial and examples to refer to for a total dummy would be very appreciated!


To start with Socket.IO I suggest you read first the example on the main page:

http://socket.io/

On the server side , read the "How to use" on the GitHub source page:

https://github.com/Automattic/socket.io

And on the client side :

https://github.com/Automattic/socket.io-client

Finally you need to read this great tutorial:

http://howtonode.org/websockets-socketio

Hint: At the end of this blog post, you will have some links pointing on source code that could be some help.


A 'fun' way to learn socket.io is to play BrowserQuest by mozilla and look at its source code :-)

http://browserquest.mozilla.org/

https://github.com/mozilla/BrowserQuest


I found these two links very helpful while I was trying to learn socket.io:

  • http://fzysqr.com/2011/02/28/nodechat-js-using-node-js-backbone-js-socket-io-and-redis-to-make-a-real-time-chat-app/
  • http://thecoffman.com/2011/02/21/getting-your-feet-wet-with-node.js-and-socket.io/
  • 链接地址: http://www.djcxy.com/p/7776.html

    上一篇: 选择移动Web HTML5框架

    下一篇: 好的入门教程socket.io?