Answers for "node command"

0

node run command

// Run a command asynchronously
const { spawn } = require('child_process');
const dir = spawn('cmd', ['/c', 'dir']);

dir.stdout.on('data', data => console.log(`Stdout: ${data}`));
dir.stderr.on('data', data => console.log(`Stderr: ${data}`));
dir.on('close', code => console.log(`Exit code: ${code}`));

// Run a command synchronously
const { spawnSync } = require( 'child_process' );
const dir = spawnSync('cmd', ['/c', 'dir']);

console.log(`Stdout: ${dir.stdout.toString()}`);
console.log(`Stderr: ${dir.stderr.toString()}`);
Posted by: Guest on August-17-2020
0

node command

> node
Welcome to Node.js <version>.

>'type in javascript'
Posted by: Guest on October-03-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language