--------------- easiest method I found---------------------------
Run npm install prompt-sync in the terminal
const prompt = require('prompt-sync')();
var name = prompt('what is your name?');
console.log(name);
--------------------------------------------------------------