I am curious about how different companies are using Node.js in their project(s). I am working on an open-source report which I hope to publish online soon. If you're in NYC I'll be talking about this at a future NYC Node.js meetup.
1. What are you using Node.js for? Is this for a new or existing project?
2. Why choose Node.js for the project?
3. What performance gains/benefits did you see, if any?
4. Any lessons learned or gotchas?
http://www.w3counter.com/stats/pulse/1
2. I got tired of fussing with kernel network config tuning, and I'm more confident with writing servers in node than C/C++.
3. A reduction in TCP sockets needed to handle a few thousand concurrent connections from several tens of thousand to just the few thousand. The request/response model of doing it in something like PHP meant there were connection from the users to nginx, nginx to php-fpm, php-fpm to the database for each user -- and it increased at more than just 3x the number of users since TCP connection stick around a while after they're finished waiting for any out-of-order packets and such.
A reduction in time-per-request from ~70ms to ~1ms. No initialization/db-connect/teardown per-request means node can do its thing and dispose of the request much faster than PHP, which was the original language this was written in some years ago.
http://i.imgur.com/ipQXcjJ.png