bittorrent-dht
Advanced tools
Comparing version 7.5.2 to 7.5.3
{ | ||
"name": "bittorrent-dht", | ||
"description": "Simple, robust, BitTorrent DHT implementation", | ||
"version": "7.5.2", | ||
"version": "7.5.3", | ||
"author": { | ||
"name": "Feross Aboukhadijeh", | ||
"email": "feross@feross.org", | ||
"url": "http://feross.org/" | ||
"name": "WebTorrent, LLC", | ||
"email": "feross@webtorrent.io", | ||
"url": "https://webtorrent.io" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/feross/bittorrent-dht/issues" | ||
"url": "https://github.com/webtorrent/bittorrent-dht/issues" | ||
}, | ||
@@ -45,3 +45,3 @@ "dependencies": { | ||
"type": "git", | ||
"url": "git://github.com/feross/bittorrent-dht.git" | ||
"url": "git://github.com/webtorrent/bittorrent-dht.git" | ||
}, | ||
@@ -48,0 +48,0 @@ "scripts": { |
# bittorrent-dht [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url] | ||
[travis-image]: https://img.shields.io/travis/feross/bittorrent-dht/master.svg | ||
[travis-url]: https://travis-ci.org/feross/bittorrent-dht | ||
[travis-image]: https://img.shields.io/travis/webtorrent/bittorrent-dht/master.svg | ||
[travis-url]: https://travis-ci.org/webtorrent/bittorrent-dht | ||
[npm-image]: https://img.shields.io/npm/v/bittorrent-dht.svg | ||
@@ -25,7 +25,7 @@ [npm-url]: https://npmjs.org/package/bittorrent-dht | ||
- Comprehensive, fully-offline test suite | ||
- Used by [WebTorrent](http://webtorrent.io), [peerflix](https://github.com/mafintosh/peerflix), and [Playback](https://mafintosh.github.io/playback/) | ||
- Used by [WebTorrent](http://webtorrent.io), [peerflix](https://www.npmjs.com/package/peerflix), and [Playback](https://mafintosh.github.io/playback/) | ||
- efficient recursive lookup algorithm minimizes UDP traffic | ||
- supports multiple, concurrent lookups using the same routing table | ||
Also see [bittorrent-tracker](https://github.com/feross/bittorrent-tracker). | ||
Also see [bittorrent-tracker](https://www.npmjs.com/package/bittorrent-tracker). | ||
@@ -375,2 +375,2 @@ ### install | ||
MIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org). | ||
MIT. Copyright (c) [Feross Aboukhadijeh](https://feross.org), Mathias Buus, and [WebTorrent, LLC](https://webtorrent.io). |
@@ -5,3 +5,3 @@ var common = require('./common') | ||
// https://github.com/feross/bittorrent-dht/pull/36 | ||
// https://github.com/webtorrent/bittorrent-dht/pull/36 | ||
test('bootstrap and listen to custom port', function (t) { | ||
@@ -8,0 +8,0 @@ t.plan(4) |
Sorry, the diff of this file is not supported yet
81441