Table of Contents

Node.js

About

Node is a javascript engine that:

In a Node installation, you got:

Node.js is built against v8.

Example

To run the below script:

console('Hello World!');
node HelloWorld.js
Hello World!