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

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

link|improve this question
feedback

closed as not constructive by Kev May 20 at 22:28

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

18 Answers

Tutorials

Videos

Books

Blogs

Podcasts

JavaScript resources

Node Modules

link|improve this answer
2  
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
2  
@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
The second book you list, Mastering Node.js, although its current content is indeed helpful, is just half finished. – Petr Vostrel Mar 9 at 11:00
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 at 19:36
feedback
up vote 46 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.

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.
link|improve this answer
4  
this should be the best answer – Kamal Reddy Apr 18 at 17:45
feedback

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.

Update: I wrote this answer over a year ago, and since that time there has explosion in the number of great resources available for people learning node. Though I still believe diving into the source is worthwhile, I think that there are now better ways to get started. I would suggest some of the books on node that are starting to come out.

link|improve this answer
2  
+1 for the opening line :3 but thats how I leant to use Kohana. So it is a pretty good method as long as you can understand the source. – Wolfy87 Mar 15 '11 at 15:19
35  
+1 for updating your answer a year after you wrote it. – Caleb May 3 '11 at 14:26
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

JsApp.US is a hosting platform for node.js applications. It may be useful to get started.

link|improve this answer
feedback

The videos from the Node.js Camp put on in Dec of 2010 are pretty helpful in getting started.

http://camp.nodejs.org/videos/

If you are just starting out you are going to want to understand some of the 'Why' behind Node.

A few of the topics

  1. Intro from Ryan Dahl (Creator)
  2. NPM - Node Package Manager
  3. Socket.io
  4. An example game covered from both the client and server perspective
  5. Redis
  6. CouchDB
  7. Initial Deployments

If you are absolutely brand new to Node.js I would recommend Ryan's Google Tech Talk first, which covers a lot of the theory behind Node. Learning 'Why' to Node can help really help you as you learn 'How' to Node.

link|improve this answer
feedback

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

link|improve this answer
feedback

There is a new site called "The Node Beginner Book". It's a great tutorial for beginners. Check it out: http://nodebeginner.org/

link|improve this answer
feedback

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

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

link|improve this answer
4  
Useful, but needs to be updated. The node.js github location is now at joyent. The close method has been replaced by end. – Paul Beusterien Mar 21 '11 at 21:39
feedback

This tutorial from howtonode.org on writing a blog using node.js is what got me started. As node.js is changing so rapidly half (that, or there abouts) of the code samples are out of date. Having to hack around between this and the docs to bring it up to date gave me a basic working knowledge fairly quickly.

http://howtonode.org/express-mongodb

link|improve this answer
feedback

You can use VJET JavaScript IDE for Eclipse and import the project NodeJSTL. This will provide a type library which will make code proposals work while learning and exploring all the apis available. Here are some screenshots available here - https://www.ebayopensource.org/index.php/VJET/NodeJS

You can get the Node JS Type library as a zip archive. Go to VJET page, Downloads, Then NodeJS type library.

Create a new VJET project and add a project dependency on NodeJSTL imported project. https://www.ebayopensource.org/docs/VJET/importing-vjet-javascript-type-libraries.html

This has been very helpful to me since VJET provides code assist for require and maps the core types automatically.

link|improve this answer
feedback

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.

link|improve this answer
feedback

There are 3 resources for learning nodejs(for full understanding how to create application just read sources in github(check it modules page):

https://github.com/joyent/node/wiki/modules http://tjholowaychuk.com/ http://devthought.com/

my own website(but it haven't complete yet): http://github.com/oivoodoo/home

link|improve this answer
feedback

Recent article on smashing magazine provide us with tons of resources and tutorials on node.js

http://coding.smashingmagazine.com/2011/09/16/useful-node-js-tools-tutorials-and-resources/

link|improve this answer
feedback

I spent some time learning Node recently and used many of the resources in this thread.

It's hard to know what to read and in what order, so I put together a beginner's tutorial that takes a stab at organizing things a bit.

link|improve this answer
feedback

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/

link|improve this answer
4  
nodeblogs.com is giving me an nginx "Bad Gateway" error... – Kev Nov 18 '10 at 15:52
-1 as @kev said, this is a dead link – marcgg Jan 10 '11 at 15:02
-1 ditto @marcgg – Jon Apr 19 '11 at 23:35
The site was working when he posted this. – Mob Oct 22 '11 at 15:45
2  
that's a while ago :). The good news is that I have an uber simple starter app here github.com/christkv/mongodb-presentation – christkv Oct 24 '11 at 18:05
feedback

Nevir's answer is pretty awesome.

I'm going to throw my own resource in the hat: my Wilcox Development Solution's Node.js whitepaper. Essentially I created it because, while Node.js's module page is a great resource, it's also super long and you don't really know which module is the best.

I also wrote the whitepaper while looking at a potential large project in node.js. My background (and focus for the whitepaper) was "large" projects (10-15 and on up manyears) so I have a different focus than some node.js people.

link|improve this answer
feedback

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