3

我正在尝试html在 Nodejs 中使用 WebTorrent 播种文件。我从 WebTorrent 收到回调,这表明客户端已开始播种,但是当我在客户端复制粘贴哈希以下载文件时,什么也没发生。

这是我在服务器端的代码:

  client.seed(file, function (torrent) {
    debug('started seeding %s - %s', torrent.infoHash, torrent.files[0].name);
  });

有什么问题,我该如何调试以查看发生了什么?

4

1 回答 1

5

我找到了答案。它就像替换webtorrentwith一样简单webtorrent-hybrid,而且效果很好。

于 2015-06-04T14:36:13.007 回答