diff options
Diffstat (limited to 'src/compileAndRun/process.js')
-rw-r--r-- | src/compileAndRun/process.js | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/compileAndRun/process.js b/src/compileAndRun/process.js new file mode 100644 index 0000000..67ff546 --- /dev/null +++ b/src/compileAndRun/process.js @@ -0,0 +1,41 @@ +let spawn = require("child_process"); + +class Process { + + constructor(command, args = []) { + this.command = command; + this.args = args; + this.stdout = ""; + this.stderr = ""; + this.fl = false; + } + + start() { + this.proc = spawn.spawn(this.command, this.args); + + this.proc.on('error', (err) => { + console.log(err); + }); + + this.proc.stdout.on('data', (_stdout) => { + this.stdout += _stdout; + }); + + this.proc.stdout.on('end', () => { + }); + + this.proc.stderr.on('data', (_stderr) => { + this.stderr += _stderr; + }); + + this.proc.stderr.on('end', () => { + }); + + this.proc.on('close', (code) => { + }); + + } + +} + +module.exports = Process;
\ No newline at end of file |