Als «child-process» getaggte Fragen

72
Wie töte ich einen Kinderprozess in NodeJS?

Erstellt einen untergeordneten Prozess mit shelljs !/usr/bin/env node require('/usr/local/lib/node_modules/shelljs/global'); fs = require("fs"); var child=exec("sudo mongod &",{async:true,silent:true}); function on_exit(){ console.log('Process Exit'); child.kill("SIGINT");...