├── .gitignore ├── LICENSE ├── README.md ├── cli.js ├── health.test.js ├── index.js ├── package.json ├── test_torrent_dir ├── Lenin - The State and Revolution [audiobook] by dessalines~20161013-170437.torrent ├── Trotsky - Fascism - What it is and How to Fight it [audiobook] by dessalines.torrent └── infohashes.txt └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/cli.js -------------------------------------------------------------------------------- /health.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/health.test.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/package.json -------------------------------------------------------------------------------- /test_torrent_dir/Lenin - The State and Revolution [audiobook] by dessalines~20161013-170437.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/test_torrent_dir/Lenin - The State and Revolution [audiobook] by dessalines~20161013-170437.torrent -------------------------------------------------------------------------------- /test_torrent_dir/Trotsky - Fascism - What it is and How to Fight it [audiobook] by dessalines.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/test_torrent_dir/Trotsky - Fascism - What it is and How to Fight it [audiobook] by dessalines.torrent -------------------------------------------------------------------------------- /test_torrent_dir/infohashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/test_torrent_dir/infohashes.txt -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessalines/torrent-tracker-health/HEAD/utils.js --------------------------------------------------------------------------------