├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── announce.js ├── basic.js └── reuse-dht.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .github/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/package.json -------------------------------------------------------------------------------- /test/announce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/test/announce.js -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/test/basic.js -------------------------------------------------------------------------------- /test/reuse-dht.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/torrent-discovery/HEAD/test/reuse-dht.js --------------------------------------------------------------------------------