It is easy to write a hello world program in Node.js:
console.log("Hello world!")
However, due to the asynchronous nature of Javascript, reading inputs and writing outputs are less straight-forward. We have to pass the callback functions or register event listeners.
First Attempt
For example, to read some …