Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Are there any good resources to get started with Node.JS? Any good tutorials, blogs or books?

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

share|improve this question
17  
Seeing as how this has been kept up reasonably well thus far, I see no harm in leaving it open. Please, consider editing new suggestions into the existing answers rather than posting new ones. – Shog9 Oct 3 '12 at 0:06
7  
If and of you are wondering on how to build a website using node.js and you're coming from a php'ish background, I've asked how to do that here stackoverflow.com/questions/11311672/… . I feel that's something a lot of people miss. – Benjamin Gruenbaum Mar 8 at 7:53

closed as not constructive by Mr. Alien, brasofilo, Kazekage Gaara, Mohit Jain, Bill the Lizard May 15 at 1:10

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

Tutorials

Videos

Screencasts

Books

Blogs

Podcasts

JavaScript resources

Node Modules

Other

share|improve this answer
4  
Are the books ordered by your value in them or randomly? Looking to purchase a good reference manual on nodeJS's basics. – David May 17 '11 at 15:11
3  
@David: More or less randomly. First two are freely available and the last one is in preview mode. I would recommend to start with The Node Beginner. – yojimbo87 May 17 '11 at 15:18
1  
The second book you list, Mastering Node.js, although its current content is indeed helpful, is just half finished. – Petr Vostrel Mar 9 '12 at 11:00
5  
My book (Node up and running) is available for free here: ofps.oreilly.com/titles/9781449398583 forever. It's also now an ebook and print. – sh1mmer May 20 '12 at 19:36
2  
best way is to dive in and swim. – chovy Sep 24 '12 at 4:12
show 2 more comments
up vote 360 down vote
+100

First, learn the core concepts of Node.js:

Then, you're going to want to see what the community has to offer:

The gold standard for Node package management is NPM.

Finally, you're going to want to know what some of the more popular packages are for various tasks:

Useful Tools for Every Project:

  • Underscore contains just about every core utility method you want.
  • CoffeeScript makes JavaScript considerably more bearable, while also keeping you out of trouble!
    • Caveat: A large portion of the community frowns upon it. If you are writing a library, you should consider regular JavaScript, to benefit from wider collaboration.

Unit Testing:

  • Vows is a fantastic take on asynchronous testing, albeit somewhat stale.
  • Expresso is a more traditional unit testing framework.
  • node-unit is another relatively traditional unit testing framework.

Web Frameworks:

  • Express is by far the most popular framework.
  • Tower is an abstraction of top of Express that aims to be a Rails clone.
  • Geddy is another take on web frameworks.
  • RailwayJS is a Ruby-on-Rails inspired MVC web framework.

Web Framework Tools:

Networking:

  • Connect is the Rack or WSGI of the Node world.
  • Request is a very popular HTTP request library.
  • socket.io is handy for building WebSocket servers.

Command Line Interaction:

  • Optimist makes argument parsing a joy.
  • Commander is another popular argument parser.
  • Colors makes your CLI output pretty.
share|improve this answer
30  
this should be the best answer – Kamal Reddy Apr 18 '12 at 17:45
1  
under frameworks you should add railwayjs.com – sagivo Jun 22 '12 at 14:55
1  
AngularJS should be part of Web Framework Tools – SPP May 9 at 4:08

I am also starting into it. I found following book very helpful: Sam's Teach Yourself Node.js in 24 Hours

it's also available on o'reilly's safary online library.

It covers the basic principles behind node.js (event loop, callbacks) and does a very nice step by step introduction to connect, express, mongodb and even a bit of backbone. Of course it's just a primer on every topic, but it gives a very good impression on what you can expect and it's worth to invest more time to learn it.

And the given time frame is realistic for real!

share|improve this answer

protected by Kev Oct 2 '12 at 23:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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