take user input node js code example
Example 1: input in node js
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();
})
Example 2: get input from user in nodejs
const prompt = require('prompt-sync')(); const name = prompt('What is your name?');console.log(`Hey there ${name}`);