What types of applications have you seen or made using node.js?

I'm not looking for a definition of what it is, but I'm curious to know what types of applications (or plan) to use for it.

+4
source share
4 answers

I think one of the most common use cases is using a comet (ajax long polling). Node.JS is very well suited for those due to its invoked nature.

With the help of comet technology, you can create real-time applications. Like chats, etc.

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

+2
source

https://github.com/ry/node/wiki lists various projects / applications using node.js.

+1
source

I used the IRC bot on the Freenode network, which was created using node.js, Protobot .

0
source

Source: https://habr.com/ru/post/1315224/


All Articles