views:

5425

answers:

7

Is there any good resources to get started with Node.JS? Any good tutorial, blog or books?

Of course, I have visited http://nodejs.org/, but I didn't think the documentation they have is a good starting point.

Thanks

+2  A: 

Use the source, Luke.

No but seriously I found that building Node from source, running the tests, and looking at the benchmarks did get me on the right track. From there, the .js files in the lib directory are a good place to look, especially the file http.js.

Zach Bialecki
+8  A: 

Howtonode is a good site to follow.Also since nodejs no longer supports promises as of 1.3 release Do is also worth watching

-Bharani

Bharani
+1  A: 

A small plug

Check out http://www.nodeblogs.com you can find the code at github under. Personally I would recommend messing around with express and also check out the github node wiki that contains lots of links to tutorials and modules.

http://wiki.github.com/ry/node/

christkv
+3  A: 

Wrote a blog to help my friends get started with nodejs.

http://neeraj.name/2010/03/25/getting-started-with-nodejs-in-steps.html

Neeraj Singh
A: 

There is a really good video introduction on the YDN with the creator: http://www.yuiblog.com/blog/2010/05/20/video-dahl/

Simon Kenyon Shepard
A: 

Heroku is a good hosting platform for NodeJS. Heroku exp support. It's experimental for now but do take a look at it. Write a slick app and deploy on it and play for sometime. This will allow you to learn the inside of configuring NodeJS as well. Node Knockout torunament website NodeKnockout is hosted on github which is in NodeJS. Hope this helps.

A_Var
+1  A: 

You can also take a look at http://nodecasts.org

Emerson Macedo