Answers for "kill spawn process node.js"

1

kill node

killall node
Posted by: Guest on August-25-2020
2

node spawn

const { spawn } = require('child_process');
const ls = spawn('ls', ['-lh', '/usr']);

ls.stdout.on('data', (data) => {
  console.log(`stdout: ${data}`);
});

ls.stderr.on('data', (data) => {
  console.error(`stderr: ${data}`);
});

ls.on('close', (code) => {
  console.log(`child process exited with code ${code}`);
});
Posted by: Guest on July-10-2020
0

node js kill process

process.exit()

//or

if (condition){process.exit()}

//or

setTimeout((function() {
    return process.exit();
}), 5000);
// kill server after 5000ms

//source :
//https://stackabuse.com/how-to-exit-in-node-js/
Posted by: Guest on March-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language