mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 02:46:39 +00:00
485 B
485 B
Child Process Module
Spawning
child_process.spawn(command, args, options); // spawn a child process
// On Windows, setting options.detached to true makes it possible for the child process to continue running after the parent exits
child_process.spawn(command, args, {
detached: true
});
Using The System Shell
exec("command args", {'shell':'powershell.exe'}, (err, stdout, stderr) => {
});
execSync("command args", {'shell':'powershell.exe'});