├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── aethertorrent.min.js ├── index.js ├── karma.conf.js ├── lib ├── file.js ├── seeder.js ├── torrent.js └── torrentstore.js ├── package.json └── test ├── test.js └── www ├── foobar.txt ├── foobar.txt.torrent ├── index.html ├── index.html.torrent ├── multi.torrent └── multi ├── fileA └── nested └── fileB /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | *.swp 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/README.md -------------------------------------------------------------------------------- /aethertorrent.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/aethertorrent.min.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/index.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lib/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/lib/file.js -------------------------------------------------------------------------------- /lib/seeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/lib/seeder.js -------------------------------------------------------------------------------- /lib/torrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/lib/torrent.js -------------------------------------------------------------------------------- /lib/torrentstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/lib/torrentstore.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/test/test.js -------------------------------------------------------------------------------- /test/www/foobar.txt: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /test/www/foobar.txt.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/test/www/foobar.txt.torrent -------------------------------------------------------------------------------- /test/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/test/www/index.html -------------------------------------------------------------------------------- /test/www/index.html.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/test/www/index.html.torrent -------------------------------------------------------------------------------- /test/www/multi.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuset/aether-torrent/HEAD/test/www/multi.torrent -------------------------------------------------------------------------------- /test/www/multi/fileA: -------------------------------------------------------------------------------- 1 | fileA 2 | -------------------------------------------------------------------------------- /test/www/multi/nested/fileB: -------------------------------------------------------------------------------- 1 | fileB 2 | --------------------------------------------------------------------------------