const readline = require('readline').createInterface({ input: process.stdin, output: process.stdout }); readline.question('who are you: ', name => { console.log(`hello, hi there ${name}`); readline.close(); })