Last active
April 8, 2018 02:13
-
-
Save Almenon/e32f9b418057ea738687c176816070d6 to your computer and use it in GitHub Desktop.
process killer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {exec} from 'child_process' | |
/** | |
* kills the process and all its children | |
* If you are on linux process needs to be launched in detached state | |
* @param pid process identifier | |
* @param signal kill signal | |
*/ | |
export function killAll(pid:number, signal:string|number='SIGTERM'){ | |
if(process.platform == "win32"){ | |
exec(`taskkill /PID ${pid} /T /F`, (error, stdout, stderr)=>{ | |
console.log("taskkill stdout: " + stdout) | |
console.log("taskkill stderr: " + stderr) | |
if(error){ | |
console.log("error: " + error.message) | |
} | |
}) | |
} | |
else{ | |
// see https://nodejs.org/api/child_process.html#child_process_options_detached | |
// If pid is less than -1, then sig is sent to every process in the process group whose ID is -pid. | |
process.kill(-pid, signal) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment