-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclient.mjs
35 lines (28 loc) · 798 Bytes
/
client.mjs
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
import { io } from 'socket.io-client'
// const { io } = require('socket.io-client');
const socket = io('http://localhost:8080');
// client-side
socket.on('new user', (msg) => {
console.log('new user');
console.log(msg);
});
socket.on('new message', (msg) => {
let msgObj = JSON.parse(msg);
if (msgObj.sender == socket.id) return;
console.log('new message');
console.log(msgObj.message);
});
socket.on('disconnect', () => {
console.log('[disconnect]');
});
socket.on('connect', () => {
console.log('[connect] id:', socket.id);
socket.emit('joinRoom', JSON.stringify(msgObj));
});
let msgObj = {
roomId: "room_001",
}
// socket.emit('joinRoom', JSON.stringify(msgObj));
msgObj.message = "hello"
msgObj.sender = socket.id
socket.emit('new message', JSON.stringify(msgObj));