stdin in node js code example

Example 1: readline in javascript

//Node.js readline
const readline = require('readline');

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

rl.question('What do you think of Node.js? ', (answer) => {
  console.log(`Thank you for your valuable feedback: ${answer}`);
  rl.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}`);