Let's write our first node app.

Initialize
Initialize the project in the normal way.
>npm init
Code
Create file "hello-world.js" with content shown.
//hello-world.js
console.log('Hello World');
Run
Run the command shown
>node hello-world
Hello World