-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
128 lines (112 loc) · 3.21 KB
/
webpack.config.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
const path = require('path');
const crypto = require('crypto');
const WebSocket = require('ws');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const e = require('express');
const userList = new Map();
function generateId() {
let id;
do {
id = crypto.randomBytes(16).toString("hex");
} while (userList.has(id));
return id;
}
function sendToClient(socket, object) {
const data = JSON.stringify(object);
console.log('[SERVER] ', data);
socket.send(data);
}
function createOnMessage(id, socket) {
const onMessage = (data) => {
console.log('[CLIENT] ', id, data);
const object = JSON.parse(data);
const { type, target, description, candidate } = object;
try {
if (type === "join") {
const peerList = Array.from(userList.keys()).filter(otherId => otherId !== id);
sendToClient(socket, {
type: "list",
peerList
});
userList.set(id, socket);
} else if (description !== undefined) {
if (userList.has(target)) {
const peerSocket = userList.get(target);
sendToClient(peerSocket, {
source: id,
description
});
}
} else if (candidate !== undefined) {
if (userList.has(target)) {
const peerSocket = userList.get(target);
sendToClient(peerSocket, {
source: id,
candidate
});
}
}
} catch {
}
};
return onMessage;
}
function createOnClose(id, socket) {
const onClose = (code, reason) => {
console.log('[CLOSE] ', id, code, reason);
userList.delete(id);
};
return onClose;
}
function createOnError(id, socket) {
const onError = (err) => {
console.error('[ERROR] ', id, err);
userList.delete(id);
this.close();
};
return onError;
}
function createWebSocketServer() {
const wss = new WebSocket.Server({
port: 3000
});
wss.on('connection', (socket) => {
const id = generateId();
socket.on('message', createOnMessage(id, socket));
socket.on('close', createOnClose(id, socket));
socket.on('error', createOnError(id, socket));
});
}
module.exports = {
mode: 'development',
entry: {
app: './src/index.js'
},
devtool: 'inline-source-map',
devServer: {
contentBase: './dist',
hot: true,
host: '0.0.0.0',
https: true,
proxy: {
'/signaling': {
target: 'ws://localhost:3000',
ws: true,
},
},
after: function (app, server, compiler) {
createWebSocketServer();
}
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: './public/index.html',
}),
],
output: {
filename: 'app.js',
path: path.resolve(__dirname, 'dist'),
},
};