1 min read

First Node.js application: “Hello World”

Open editor and create a file called helloworld.js.

We want to write “Hello World” to Consol

 console.log("Hello World");  

Save the file, and execute it through Node.js

 node helloworld.js  

Share your Love

Leave a Reply

Your email address will not be published. Required fields are marked *