Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js

First Node.js Script

Time is up to implement our first JavaScript code that will be executed from node.js interpreter and not browser. Let's create a new folder, and inside a new JS file (i named it 'helloNode.js' ). 

Inside that file i will log to the node.js console the string 'Hello Node.js'. Simple as that. Now it's time to execute this file from top to bottom (exactly like in the browser, the synchronous way) through node.js 

Let's see how we can do that.