NodeJS Beginner Guide
Hello World !
Place the following code into a file name helloworld.js
console.log("Hello World");
Save the file, and execute it through Node.js:
node helloworld.js
Place the following code into a file name helloworld.js
console.log("Hello World");
Save the file, and execute it through Node.js:
node helloworld.js