Answers for "run node js file in terminal withoout take terminal"

2

get input in terminal 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();
});
Posted by: Guest on May-27-2021
1

execute terminal command nodejs

// You can use 'exec' this way
// LINUX EXAMPLE

const { exec } = require("child_process");

exec("ls -la", (error, stdout, stderr) => {
    if (error) {
        console.log(`error: ${error.message}`);
        return;
    }
    if (stderr) {
        console.log(`stderr: ${stderr}`);
        return;
    }
    console.log(`stdout: ${stdout}`);
});
Posted by: Guest on October-12-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language