-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
98 lines (68 loc) · 2.21 KB
/
app.js
File metadata and controls
98 lines (68 loc) · 2.21 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import createError from 'http-errors';
import express from 'express';
const { json, urlencoded } = express;
import path from 'path';
const { join } = path;
import cookieParser from 'cookie-parser';
import logger from 'morgan';
import http from 'http';
import { Server } from 'socket.io';
import dotenv from 'dotenv';
import indexRouter from './routes/index.routes.js';
// ml imports
// const spawn = require("child_process").spawn;
import spawn from 'child_process';
const pythonProcess = spawn.spawn('python', ["path/to/script.py"]);
const app = express();
const server = http.createServer(app);
const io = new Server(server);
dotenv.config();
// websockieeeeessss
// run when a client connects
import { formatQuestion } from './utils/questions.js';
import { users, addUser, getCurrentUser, removeCurrentUser } from './utils/users.js';
io.on('connection', socket => {
socket.on('question', ({ text }) => {
// send this message to every user
console.log(text)
io.emit('question', formatQuestion(text))
})
// handle user disconnecting
socket.on('disconnect', () => {
const user = getCurrentUser(socket.id)
// send to everyone connected
removeCurrentUser(user)
})
})
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// view engine setup
app.set('views', join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.use(logger('dev'));
app.use(json());
app.use(urlencoded({ extended: false }));
app.use('/static', express.static(path.join(__dirname, 'public')));
app.use(express.static('public'))
app.use('/home', (req, res) => {
res.render('home.views.ejs');
})
app.use('/', indexRouter);
// catch 404 and forward to error handler
app.use(function (req, res, next) {
next(createError(404));
});
// error handler
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error.ejs');
});
const port = process.env.PORT || 4000;
server.listen(port, () => {
console.log(`listening to port ${port}`);
})