tags:

views:

109

answers:

3

I'm not looking for a definition of what it is, but I'm interested in knowing what types of applications people are ( or plan to ) use it for.

+2  A: 

I think that one of the most common use cases is Comet (ajax long polling) applications. Node.JS is very good fit for those, because of its evented nature.

With comet technique you can create real time applications. Like chats etc.

http://en.wikipedia.org/wiki/Comet_(programming)

Epeli
A: 

I've used an IRC bot on the Freenode network that was made with node.js, Protobot.

meder
+1  A: 

http://wiki.github.com/ry/node/ lists different projects/apps using node.js.

dhofstet
Here's another real world example http://github.com/blog/678-meet-nodeload-the-new-download-server
Epeli