Good beginners tutorial to socket.io? [closed]
I am very new to开发者_JAVA技巧 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
Official tutorial https://socket.io/get-started/chat
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/
精彩评论