node.js



 

Node’s goal is to provide an easy way to build scalable network programs. In the “hello world” web server example above, many client connections can be handled concurrently. Node tells the operating system (through epoll, kqueue, /dev/poll, or select) that it should be notified when a new connection is made, and then it goes to sleep. If someone new connects, then it executes the callback. Each connection is only a small heap allocation.

Website:
www.nodejs.org
Rating:
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
License:
Freeware
Added:
07/11/2010
Hits:
430
Category:
JavaScript
Share:
 

Add your Review