-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 848 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Chat :)</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>Abra o console e converse!</div><br/>
<div>OBS: Utilizar a seguinte estrutura para enviar mensagens globais no console</div>
<b> chat.enviar("sua mensagem"); </b>
<div>OBS: Utilizar a seguinte estrutura para enviar mensagens direcionadas no console</div>
<b> chat.enviar("sua mensagem", [10, 11]); </b>
</body>
</html>
<script>
var conn = new WebSocket('ws://localhost:8080');
var chat = {
enviar: function(mensagem, destino) {
conn.send( JSON.stringify({
destino: destino,
mensagem: mensagem
}) );
}
};
conn.onopen = function(e) {
console.log("Conexão estabelecida!");
};
conn.onmessage = function(e) {
console.log(e.data);
};
</script>