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!

Thanks :)

link|improve this question

Big thumbs down. Why accept an incorrect answer? – Wolfpack'08 Apr 30 at 1:09
Its not incorrect, its a matter of prespective... I learnt usign the sources mentioned.. And I do know my way around it... Feel free to ask any thing you don't understand... – Shouvik Apr 30 at 20:53
It's not a matter of perspective. It's flat incorrect. Too many important details are missing. If you take an advanced math class, and you don't show your work, the teacher will not give you a pass. Adults are expected to be able to show their work. There's no way to justify not showing all of the required steps in a tutorial for a user to be able to recreate the result, consistently, on the spec machine. There's no perspectivizing about it. It's objectively an incorrect answer, even if there's a subjective element to all measures. 2+2 can equal 5; however, in arithmetic that's wrong. – Wolfpack'08 May 1 at 12:47
Write a correct answer I will accept that... Thats the best I can do, tell me who has a better answer than the one I accepted posted here? – Shouvik May 4 at 20:07
feedback

4 Answers

up vote 37 down vote accepted

To start with Socket.IO I suggest you read first the example "How to use (Node.JS)" on the main page:

http://socket.io/

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

https://github.com/LearnBoost/Socket.IO-node

And on the client side:

https://github.com/LearnBoost/Socket.IO

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.

link|improve this answer
1  
These are all bad (poorly planned, poorly written, inaccessible, etc.) tutorials, not suited for beginners. The writer doesn't appear to speak English well. The code is not commented or explained. The paths are not explained. There is no 'desired output' shown. There's no explanation of system messages, etc. – Wolfpack'08 Apr 30 at 0:40
feedback

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

link|improve this answer
Node chat works from client-to-client, but there's no example of how to send messages from the server. The second tutorial is incomplete (part 1 and no part 2). – Wolfpack'08 Apr 30 at 0:46
feedback

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

link|improve this answer
feedback

This might be what you are looking for

http://blancer.com/tutorials/69066/start-using-html5-websockets-today/

And http://www.w3schools.com/default.asp is a very good place to go for everything web development related, a tonne of tutorials...

Enjoy

link|improve this answer
This tutorial is so-so, but the desired results can no longer be achieved with the code presented. It hasn't been kept up to date. – Wolfpack'08 Apr 30 at 0:42
feedback

Your Answer

 
or
required, but never shown

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