aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/main.js
blob: 409580d1e7b6339c22f20ea0e5daf24d821e2f5f (plain) (blame)
1
2
3
4
5
6
7
8
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)
});