Node.js: Difference between revisions

From Rosetta Code
Content added Content deleted
(Adding page for Node.js as a JavaScript implementation)
 
(minor details)
Line 1: Line 1:
{{implementation|JavaScript}}{{stub}}
{{implementation|JavaScript}}{{stub}}
'''Node.js''' is a framework using the V8 JavaScript engine by Google.
'''Node.js''' is an event based, asynchronous I/O framework using the V8 JavaScript engine by Google.


Node.js has gained a lot of popularity for using JavaScript outside of the web browser. It has a robust API with support for e.g. file reading, TCP and UDP sockets (both as server and client) etc.
Node.js has gained a lot of popularity for using JavaScript outside of the web browser. It has a robust API with support for e.g. file reading, TCP and UDP sockets (both as server and client) etc.

Revision as of 02:17, 16 August 2011

Node.js is an implementation of JavaScript. Other implementations of JavaScript.
This page is a stub. It needs more information! You can help Rosetta Code by filling it in!

Node.js is an event based, asynchronous I/O framework using the V8 JavaScript engine by Google.

Node.js has gained a lot of popularity for using JavaScript outside of the web browser. It has a robust API with support for e.g. file reading, TCP and UDP sockets (both as server and client) etc.