Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok this is probably a little blunt and to the point, but what is the point/need for Node.js

I've noticed it mainly through VMWare CloudFoundry but just not too sure what its supposed to be doing. However I am guessing its probably something pretty big as why else would VMWare be supporting it.

Thanks in advance.

share|improve this question
2  
You have good answers here! Consider accepting one of them, as a token of gratitude :) – uʍop ǝpısdn Jun 3 '11 at 1:31

closed as not a real question by Merlyn Morgan-Graham, Glen Best, luser droog, vascowhite, EECOLOR Apr 21 at 10:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

6 Answers

up vote 18 down vote accepted

It's an...

  • Efficient and 100% evented IO framework,
  • flexible enough to use the best underlying OS features it can find,
  • presenting an API in a high-level programming language (the same language your client-side will most-likely use),
  • implemented on top of the best available intepreting engine for that language, and
  • supporting more and more third party libraries with each passing day.

:)

share|improve this answer

Node.js does IO right. It's asynchronous and non-blocking and the beauty of using js is that it does not have a standard blocking IO.

It's fast (v8 is a beast), it scales well, It's got a vibrant community and it's popular.

There are lots of wonderful libraries that run on node like now and socket.io.

It excels at real time communication and highly concurrent websites.

It also has the added bonus of less code duplication. You can write the same MVC code on the client as the server and easily support non-js users.

Further reads:

share|improve this answer

Node.js is an event based, asynchronous I/O framework that uses Google's V8 JavaScript engine. Node.js is commonly used for heavy client-server JavaScript applications.

The node.js tag has some more background information to point you in the right direction: http://stackoverflow.com/tags/node.js/info

share|improve this answer

Node leverages Javascript's first class functions to allow you to program the server in a dynamic scripting language while getting very competitive performance.

Node isn't as fast as Haskell, Erlang or Go. But it is competitive with Java, and it outperforms Ruby, Python and PHP.

Haskell, Erlang, Go, Java, Ruby, and Python all have evented IO webframeworks, but they also have blocking libraries to serve as pitfalls.

Despite it's warts, Javascript is the lingua franca of the web and since browsers are evented, not only is Javascript built for evented style programming, most web developers are used to writing evented Javascript.

Also check out this register article: http://www.theregister.co.uk/2011/03/01/the_rise_and_rise_of_node_dot_js/

share|improve this answer
Do you have any benchmarks on haskell & Go being faster? – Raynos Jun 1 '11 at 22:19
ostinelli.net/… – generalhenry Jun 1 '11 at 22:22
Those cover Haskell & Erlang. I want a statement saying Go is faster then node. The haskell comparisons are also unfair due to not using multiple node processes to scale across cores. I can believe haskell has an edge but its not overwhelming – Raynos Jun 1 '11 at 22:32
1  
Go and Haskell are strongly typed and compiled with multiprocessor concurrency models deeply embedded in the language. They're faster, they use less memory. But they're are reasons Node.js has a larger community. (and why I personally use Node.js) – generalhenry Jun 1 '11 at 22:36
show 1 more comment

This post might help:

Why Developers Should Pay Attention to Node.js

share|improve this answer

A lot of people don't want to/feel the need to learn a "true" server-side programming language, so Node.js provides an easy way for developers (more specifically IMHO front-end developers) to do server side scripting. There are lots of tools that help you to interract with SQL databases and do all kinds of server-side processes that are typically limited to "traditional" server-side technologies, so it's pretty adaptable.

It's not really a necessity to use it, but if you're a JS guy, it's pretty killer.

share|improve this answer
6  
Javascript is a "true" server-side programming language. – Raynos Jun 1 '11 at 20:46
4  
I think this answer is misleading. Node.js is all about evented i/o. The fact that it's javascript which you might already know is a plus, but it's not the "point" of node.js. – Matt Roberts Jun 1 '11 at 20:50
Javascript has always had server-side implementations. Node.js is simply the first time it's been done right. – generalhenry Jun 1 '11 at 22:19
Yikes, was not expecting that much negativity. Not wanting to take up PHP or similar server-side languages was why I took up Node.js, I must have been the only one. – OldDrunkenSailor Jun 2 '11 at 1:43
@OldDrunkenSailor If you rephrase it to give advantages of node.js (One of them is a similar development language) and not state that it's an alternative for those who don't want to learn PHP / ASP.NET (which has the strong undertone that they are better then node) then it wouldnt get so many downvotes. – Raynos Jun 2 '11 at 20:01
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.