4

i would like to begin tinkering with Node.js but i am unsure of some "Real-World" situations where node.js would be considered the proper thing to be used. The last thing a developer wants is to learn a new technology and use it in-properly..

Can you provide real-world examples of where node.js would be used properly

NDBoost
  • 183
  • 8

1 Answers1

2

Web apps server side, that is, apps that handle lots of network traffic and optionally lots of disk traffic. Node.js's main strength is non-blocking io (network as well as disc).

herby
  • 2,744
  • I can imagine NodeJS useful in making simple REST-like API's for heavy I/O data transfers (such as fetching data from databases, key-value stores, etc). – Spoike Jun 08 '12 at 16:46
  • It's a general use language platform. It would have been better to have asked what can't you use it for. – Erik Reppen Aug 20 '14 at 20:57