You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/client/peer.js

14 lines
353 B
JavaScript

import DownloadActions from './actions/DownloadActions';
import Peer from 'peerjs';
import PeerActions from './actions/PeerActions';
var peer = module.exports = new Peer({ key: '8w3x9m637e0o1or' });
peer.on('open', function () {
PeerActions.setPeerID(peer.id);
});
peer.on('connection', function (conn) {
DownloadActions.beginDownload(conn);
});