Discover Node.js and move from frontend to backend
Difficulty: Junior ● Progress: 0 / 0 modules completed
Hello World

To start with our first script, what could be better than starting with a good old "Hello World".
Create a hello-node folder in your working folder, and create an index.js file inside it. Then you can write the following line in this new file:
console.log("Hello World");
But how do you run this JavaScript code without opening your browser?
You need a free account to read this module