├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── fixtures ├── Leaves of Grass by Walt Whitman.epub ├── alice.torrent ├── alice.txt ├── blocklist.txt ├── blocklist.txt.gz ├── bunny.torrent ├── corrupt.torrent ├── folder.torrent ├── folder │ └── file.txt ├── leaves-metadata.torrent ├── leaves.torrent ├── lots-of-numbers.torrent ├── lots-of-numbers │ ├── big numbers │ │ ├── 10.txt │ │ ├── 11.txt │ │ └── 12.txt │ └── small numbers │ │ ├── 1.txt │ │ ├── 2.txt │ │ └── 3.txt ├── numbers.torrent ├── numbers │ ├── 1.txt │ ├── 2.txt │ └── 3.txt └── sintel.torrent ├── index.js └── package.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/Leaves of Grass by Walt Whitman.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/Leaves of Grass by Walt Whitman.epub -------------------------------------------------------------------------------- /fixtures/alice.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/alice.torrent -------------------------------------------------------------------------------- /fixtures/alice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/alice.txt -------------------------------------------------------------------------------- /fixtures/blocklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/blocklist.txt -------------------------------------------------------------------------------- /fixtures/blocklist.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/blocklist.txt.gz -------------------------------------------------------------------------------- /fixtures/bunny.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/bunny.torrent -------------------------------------------------------------------------------- /fixtures/corrupt.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/corrupt.torrent -------------------------------------------------------------------------------- /fixtures/folder.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/folder.torrent -------------------------------------------------------------------------------- /fixtures/folder/file.txt: -------------------------------------------------------------------------------- 1 | This is a file 2 | -------------------------------------------------------------------------------- /fixtures/leaves-metadata.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/leaves-metadata.torrent -------------------------------------------------------------------------------- /fixtures/leaves.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/leaves.torrent -------------------------------------------------------------------------------- /fixtures/lots-of-numbers.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/lots-of-numbers.torrent -------------------------------------------------------------------------------- /fixtures/lots-of-numbers/big numbers/10.txt: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /fixtures/lots-of-numbers/big numbers/11.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /fixtures/lots-of-numbers/big numbers/12.txt: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /fixtures/lots-of-numbers/small numbers/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /fixtures/lots-of-numbers/small numbers/2.txt: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /fixtures/lots-of-numbers/small numbers/3.txt: -------------------------------------------------------------------------------- 1 | 333 -------------------------------------------------------------------------------- /fixtures/numbers.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/numbers.torrent -------------------------------------------------------------------------------- /fixtures/numbers/1.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /fixtures/numbers/2.txt: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /fixtures/numbers/3.txt: -------------------------------------------------------------------------------- 1 | 333 -------------------------------------------------------------------------------- /fixtures/sintel.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/fixtures/sintel.torrent -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtorrent/webtorrent-fixtures/HEAD/package.json --------------------------------------------------------------------------------