-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
44 lines (39 loc) · 1.14 KB
/
index.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
const app = require('express')();
const http = require('http').Server(app);
const io = require('socket.io')(http);
const pythonShell = require('python-shell');
const port = process.env.PORT || 3000;
app.use((req, res) => {
if(req.url == "/") {
res.sendFile(__dirname + '/index.html');
} else if (req.url == "/testSum") {
const shell = new pythonShell('testSum.py');
shell.on('message', (msg) => {
console.log("message: " + msg);
res.send(msg);
});
console.log("send: 1\n");
shell.send("1")
console.log("send: 2\n");
shell.send("2");
}
});
io.on('connection', (socket) => {
console.log("a user connected");
//Get a new drink when requested
socket.on('GET_NEW_DRINK', () => {
const shell = new pythonShell('testSum.py');
shell.on('message', (msg) => {
console.log("message: " + msg);
io.emit('NEW_DRINK', msg);
})
shell.send(Math.floor((Math.random() * 10) + 1));
shell.send(Math.floor((Math.random() * 10) + 1));
});
socket.on('disconnect', () => {
console.log("a user disconnected");
});
});
http.listen(port, () => {
console.log("Site running on port " + port);
});