0

Please share your best resources for learning Node.js and Redis.

donald
  • 23,587
  • 42
  • 142
  • 223

5 Answers5

4

I never found these series of blog posts quoted anywhere, but it seriously helped me get started off real quick with node. http://blog.osbutler.com/categories/node-by-example/?page=3 Its a bit outdated though.

Apart from that, http://howtonode.org and the NodeJS docs.

Shripad Krishna
  • 10,463
  • 4
  • 52
  • 65
  • +1. Those OSButler tutorials are hands down the best I've seen so far. However, they seem not to have kept up with all of the node.js changes. (For example, they use addlistener() which, I believe, has been superceded by on()). That said, I recommend starting with them (but keep the nodejs.org docs open in another tab). Then move on to the nodetuts, dailyjs and howtonode tutorials. – coolgeek Jan 21 '11 at 02:49
  • true :) even childprocess has been deprecated. – Shripad Krishna Jan 21 '11 at 02:59
2

I will continue to update this list. (But for now quickly)

Alfred
  • 60,935
  • 33
  • 147
  • 186
1

I think that Redis webpage has probably the best commands documentation on the DB market (I really like especially the CLI used within examples). Also this tutorial is a must read I would say.

From the node.js point of view I would recommend Introduction to Redis by Matt Ranney and his Redis client readme and examples.

yojimbo87
  • 65,684
  • 25
  • 123
  • 131
1

Here is a nice extensive tutorial using Node.js together with express and other frameworks: http://www.google.com/search?sitesearch=dailyjs.com&q=node+tutorial

pfleidi
  • 2,936
  • 3
  • 19
  • 10
1

Aaaa.... no http://dailyjs.com/ among the links is a blasphemy! hehe

list of all posts with node tag node tutorials: http://dailyjs.com/tags.html#node

Tom Tu
  • 9,573
  • 35
  • 37