使用Webtorrent播种文件

时间:2015-06-04 12:11:28

标签: node.js webtorrent

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

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

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

问题是什么?我如何调试才能看到发生了什么?

1 个答案:

答案 0 :(得分:2)

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