-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
38 lines (28 loc) · 1.02 KB
/
server.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
const http = require("http");
const express = require("express");
const path = require("path");
const { Server: SocketIO } = require('socket.io');
const app = express();
const server = http.createServer(app);
const io = new SocketIO(server, { cors: true });
app.use(express.static('./public'));
io.on("connection", function(socket){
socket.on("sender-join", function(data){
socket.join(data.uid);
});
socket.on("receiver-join", function(data){
socket.join(data.uid);
socket.in(data.sender_uid).emit("init", data.uid);
});
socket.on("file-meta", function(data){
socket.in(data.uid).emit("fs-meta", data.metadata);
});
socket.on("fs-start", function(data){
socket.in(data.uid).emit("fs-share", {});
})
socket.on("file-raw", function(data){
socket.in(data.uid).emit("fs-share", data.buffer);
})
});
const PORT = process.env.PORT || 8000;
server.listen(PORT, () => console.log(`🚀 Server started at PORT:${PORT}`));