我正在尝试使用Nodejs中的WebTorrent播种html
文件。我从WebTorrent收到回调,表示客户端已经开始播种,但是当我在客户端复制粘贴哈希以下载文件时,没有发生。
这是我在服务器端的代码:
client.seed(file, function (torrent) {
debug('started seeding %s - %s', torrent.infoHash, torrent.files[0].name);
});
问题是什么?我如何调试才能看到发生了什么?
答案 0 :(得分:2)
我找到了答案。它就像用webtorrent
替换hybrid-webtorrent
一样简单,而且效果很好。