blob: d732b975bd6845f363996219eea29d1542abfef8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
const nanoid = require('nanoid');
const userId = nanoid();
const peer = new Peer(userId, {host: '127.0.0.1', port: 4242, path: '/'});
peer.on('open', id => {
console.log('[LOG] Your ID is ' + id)
});
|