1

I am a quite new to node js and have done some homework in reading the docs, building a small app and went through some blogs posts. But now i'm looking for some typical use cases for a node application.

An example or a scenario will do.

Can someone help me with this?

Thanks.

4

2 Answers 2

4

It's really useful to build APIs that power mobile apps. At i.TV, we created an API with node.js to power our iPhone App that helps people know what's on TV. We use it because it scales really well and it's fun to program in JavaScript :)

LinkedIn chose Node.js to power their mobile app for similar reasons: http://venturebeat.com/2011/08/16/linkedin-node/

Sign up to request clarification or add additional context in comments.

Comments

0

See http://corp.klout.com/blog/2011/10/the-tech-behind-klout-com/ or a long list at https://github.com/joyent/node/wiki/Projects,-Applications,-and-Companies-Using-Node.

Node.js is stupendous with its single-thread-for-all-connection approach where each packet received is notified as event which is then handle by callback. Basically with node.js, you achieve a high level of concurrency without much multi-threading blues.

Also, when not to use node.js and why - http://comments.gmane.org/gmane.comp.lang.javascript.nodejs/30957.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.