blob: d0d6073e03a375a292a0b0d432fa15355d1057c7 (
plain) (
blame)
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
|
const $ = require('jquery');
const nanoid = require('nanoid');
const userId = nanoid();
const peer = new Peer(userId, {host: '127.0.0.1', port: 4242, path: '/', debug: 3});
// Peer events
peer.on('open', id => {
console.log('[LOG] Your ID is ' + id);
peer.on('data', data => console.log('[LOG] Received data ' + data));
peer.on('error', err => console.error(err));
});
function connect(id) {
console.log('[LOG] Connecting to ' + id);
const connectionId = nanoid();
const conn = peer.connect(id, {label: connectionId});
console.log('[LOG] Your connection ID is ' + connectionId);
conn.on('open', function () {
conn.send('hi!');
});
}
/**
* Events after load
*/
$(document).ready(() => {
$('#user_id_form').on('click', e => connect($('#user_id').val()));
});
|