Is a JavaScript runtime built on Chrome`s V8 JavaScript engine

Node.js
Download Node.js

Node.js Foundation  -  Open Source
As an asynchronous event-driven JavaScript runtime, Node is designed to build scalable network applications. In the following "hello world" example, many connections can be handled concurrently. Upon each connection, the callback is fired, but if there is no work to be done, the Node will sleep. This is in contrast to today's more common concurrency model where OS threads are employed. Thread-based networking is relatively inefficient and very difficult to use. Furthermore, users of Nodejs are free from worries of dead-locking the process, since there are no locks. Almost no function in Node directly performs I/O, so the process never blocks. Because nothing blocks, scalable systems are very reasonable to develop in Node.

Join our mailing list

Stay up to date with latest software releases, news, software discounts, deals and more.

Subscribe