Socket
Socket
Sign inDemoInstall

torrent-discovery

Package Overview
Dependencies
Maintainers
1
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

torrent-discovery

Discover BitTorrent peers via DHT and Trackers


Version published
Weekly downloads
4.1K
increased by22.49%
Maintainers
1
Weekly downloads
 
Created
Source

torrent-discovery npm gittip

Discover BitTorrent and WebTorrent peers

This module bundles bittorrent-dht and bittorrent-tracker clients and exposes a single API for discovering BitTorrent peers via both discovery methods.

features

  • simple API
  • find peers from trackers and the DHT
  • automatically announces, so other peers can discover us
  • can start finding peers with just an info hash, before full metadata is available

This module also works in the browser with browserify. In that context, it uses webtorrent-dht (TODO!) and webtorrent-tracker clients to discover WebTorrent (WebRTC) peers.

install

npm install torrent-discovery

api

discovery = new Discovery(opts)

Create a new peer discovery instance. Required options are:

{
  peerId: '', // as utf8 string or Buffer
  port: 0     // torrent client port (only required in node)
}

Optional options are:

{
  announce: [], // force list of announce urls to use (from magnet uri)
  dht: true,    // use dht? also, can optionally pass in global DHT instance to use
  tracker: true // use trackers?
}

This module automatically handles announcing to the DHT, for maximum peer discovery.

discovery.setTorrent(infoHashOrTorrent)

When you learn the infoHash (hex string) of the torrent, call this method to begin searching for peers.

Later, when you get the full torrent metadata (parsed via parse-torrent), call this method again to ensure more accurate tracker stats (because we now know the torrent length).

discovery.stop()

Destroy and cleanup the DHT and tracker instances.

events

discovery.on('peer', function (peer) {})

Emitted whenever a new peer is discovered.

In node, peer is a string in the form 12:34:56:78:4000.

In the browser, peer is an instance of simple-peer, a small wrapper around a WebRTC peer connection.

discovery.on('dhtAnnounce', function () {}

Emitted whenever an announce message has been sent to the DHT.

discovery.on('warning', function (err) {})

Emitted when there is a non-fatal DHT or tracker error, like an inaccessible tracker server. Useful for logging. This is non-fatal.

discovery.on('error', function (err) {})

Emitted when there is a fatal, unrecoverable DHT or tracker error.

license

MIT. Copyright (c) Feross Aboukhadijeh.

Keywords

FAQs

Package last updated on 08 Sep 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc