ask the user to input the text in nodejs code example

Example 1: how to get input from user in nodejs

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

Example 2: node js ask for user input

const readline = require("readline");
const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout
});

rl.question("What is your name ? ", function(name) {
    rl.question("Where do you live ? ", function(country) {
        console.log(`${name}, is a citizen of ${country}`);
        rl.close();
    });
});

rl.on("close", function() {
    console.log("\nBYE BYE !!!");
    process.exit(0);
});

Example 3: get input from user in nodejs

const prompt = require('prompt-sync')(); const name = prompt('What is your name?');console.log(`Hey there ${name}`);