forked from miguelgrinberg/python-socketio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlatency.js
More file actions
25 lines (18 loc) · 639 Bytes
/
Copy pathlatency.js
File metadata and controls
25 lines (18 loc) · 639 Bytes
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
const express = require('express');
const { createServer } = require("http");
const { Server } = require("socket.io");
const app = express();
const httpServer = createServer(app);
const io = new Server(httpServer);
const port = process.env.PORT || 5000;
app.use(express.static(__dirname + '/latency_public'));
io.on('connection', socket => {
console.log(`connect ${socket.id}`);
socket.on('ping_from_client', () => {
socket.emit('pong_from_server');
});
socket.on('disconnect', () => {
console.log(`disconnect ${socket.id}`);
});
});
httpServer.listen(port, () => console.log(`server listening on port ${port}`));