Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
torrent-discovery
Advanced tools
This module bundles bittorrent-dht and bittorrent-tracker clients and exposes a single API for discovering BitTorrent peers via both discovery methods.
This module also works in the browser with browserify. In that context, it discovers WebTorrent (WebRTC) peers.
npm install torrent-discovery
discovery = new Discovery(opts)
Create a new peer discovery instance. Required options are:
{
infoHash: '', // as hex string or Buffer
peerId: '', // as hex 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? optionally, this can be an `opts` object, or a DHT instance to use (can be reused for multiple torrents)
dhtPort: 0, // custom listen port for the DHT instance (not used if DHT instance is given via `opts.dht`)
userAgent: '', // User-Agent header for http requests
tracker: true, // use trackers? optionally, this can be an `opts` object
}
See the documentation for bittorrent-dht and
bittorrent-tracker for information on what
options are available via the opts
object.
This module automatically handles announcing on intervals, for maximum peer discovery.
discovery.updatePort(port)
When the port that the torrent client is listening on changes, call this method to reannounce to the tracker and DHT with the new port.
discovery.complete([opts])
Announce that download has completed (and the client is now a seeder). This is only used by trackers, for statistical purposes. If trackers are not in use, then this method is a no-op.
Optional opts
object with the following options:
{number=} opts.uploaded
{number=} opts.downloaded
{number=} opts.numwant
{number=} opts.left (if not set, calculated automatically)
discovery.destroy()
Destroy and cleanup the DHT and tracker instances.
discovery.on('peer', function (peer, source) {})
Emitted whenever a new peer is discovered. Source is either 'tracker' or 'dht' based on peer source.
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.
MIT. Copyright (c) Feross Aboukhadijeh.
FAQs
Discover BitTorrent and WebTorrent peers
The npm package torrent-discovery receives a total of 2,111 weekly downloads. As such, torrent-discovery popularity was classified as popular.
We found that torrent-discovery demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.