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/socket.js

9 lines
222 B
JavaScript

import io from 'socket.io-client';
import UploadActions from './actions/UploadActions';
var socket = module.exports = io.connect();
socket.on('download', function (peerID) {
UploadActions.sendToDownloader(peerID);
});