-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
72 lines (30 loc) · 917 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
var express = require('express');
var bodyParser = require('body-parser');
const { spawn } = require('child_process');
var path = require('path');
const port = 8080;
var app = express();
var update = "";
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: false}));
app.use(express.static(path.join(__dirname, '/')));
app.get('/', (req, res)=>{
res.render('index.html');
});
app.post('/', (req, res)=>{
var submit = req.body.submit_string;
var splitString = submit.split(" ");
//spawn(splitString[0],splitString.slice(1,22), { stdio: 'inherit' });
const run = spawn(splitString[0],splitString.slice(1,22));
run.stdout.on('data',(data) => {
console.log(`${data}`);
update = data;
});
});
app.put('/',(req,res)=>{
//console.log(update);
res.send(update);
});
app.listen(port , ()=> {
console.log(`Backend server is listening at port ${port}`);
});