-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
42 lines (36 loc) · 950 Bytes
/
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
const express = require('express');
const app = express();
const expressWs = require('express-ws')(app);
const port = 3000;
const aWss = expressWs.getWss('/');
const broadcast = function (data) {
aWss.clients.forEach(function (client) {
client.send(JSON.stringify({
timestamp: (new Date()).getTime(),
...data
}));
});
}
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.get('/', function (req, res, next) {
res.sendFile(__dirname + '/ws.html');
});
app.post('/', function (req, res, next) {
broadcast(req.body);
res.json({
status: "OK"
});
});
app.ws('/', function (ws, req) {
ws.on('message', function (msg) {
console.log(msg);
broadcast({
message: msg,
})
});
console.log('socket', req.testing);
});
app.listen(port, function () {
console.log("Server is running on " + port + " port");
});