darioguarascio
darioguarascio

Reputation: 1087

Query to a torrent tracker in node.js

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

Answers (1)

Tucker Joseph
Tucker Joseph

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

Related Questions