Reputation: 1087
I was looking for a node.js implementation to query a torrent tracker (http, udp or whatever) to get seeds, peers and downloads
What I found was only a tracker server implementation, and before implementing it myself I ask here if anybody has something similar.
Upvotes: 0
Views: 2798
Reputation: 11
I've implemented a bitTorrent client in node.js which will hit a http tracker. my repo is https://github.com/rtjoseph11/nTorrent. if you look in the utils file the tracker request is there. for a detailed explanation of what to include in a request go to https://wiki.theory.org/BitTorrentSpecification
Upvotes: 1