An open API service indexing awesome lists of open source software.

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

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)
})
```