https://github.com/draeder/tracker-tester
Tests whether or not a bittorrent tracker is responsive
https://github.com/draeder/tracker-tester
Last synced: about 1 month ago
JSON representation
Tests whether or not a bittorrent tracker is responsive
- Host: GitHub
- URL: https://github.com/draeder/tracker-tester
- Owner: draeder
- License: mit
- Created: 2021-06-20T19:57:16.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-10T20:13:46.000Z (about 3 years ago)
- Last Synced: 2024-04-23T22:37:52.850Z (about 1 year ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tracker-tester
Tests whether or not a bittorrent tracker is responsive# Usage
## Install
`npm i tracker-tester`## Example
### CLI
`npm i tracker-tester -g``> tracker-tester https://tracker.peer.ooo/announce`
### Node.js
```js
const Tester = require('tracker-tester')let tester = new Tester('https://tracker.peer.ooo/announce')
tester.on('result', result => {
console.log('Good tracker?', result)
})
```