mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2025-01-31 10:31:36 +00:00
add readme for scrape feature
This commit is contained in:
parent
94ae74b32d
commit
fec4e0dc3d
17
README.md
17
README.md
@ -18,6 +18,7 @@ by [WebTorrent](http://webtorrent.io).
|
|||||||
|
|
||||||
- Includes client & server implementations
|
- Includes client & server implementations
|
||||||
- Supports HTTP & UDP trackers ([BEP 15](http://www.bittorrent.org/beps/bep_0015.html))
|
- Supports HTTP & UDP trackers ([BEP 15](http://www.bittorrent.org/beps/bep_0015.html))
|
||||||
|
- Supports tracker scrape
|
||||||
|
|
||||||
## install
|
## install
|
||||||
|
|
||||||
@ -53,9 +54,9 @@ client.on('error', function (err) {
|
|||||||
client.start()
|
client.start()
|
||||||
|
|
||||||
client.on('update', function (data) {
|
client.on('update', function (data) {
|
||||||
console.log('got a response from tracker: ' + data.announce)
|
console.log('got an announce response from tracker: ' + data.announce)
|
||||||
console.log('number of seeders on this tracker: ' + data.complete)
|
console.log('number of seeders in the swarm: ' + data.complete)
|
||||||
console.log('number of leechers on this tracker: ' + data.incomplete)
|
console.log('number of leechers in the swarm: ' + data.incomplete)
|
||||||
})
|
})
|
||||||
|
|
||||||
client.once('peer', function (addr) {
|
client.once('peer', function (addr) {
|
||||||
@ -70,6 +71,16 @@ client.update()
|
|||||||
|
|
||||||
// stop getting peers from the tracker, gracefully leave the swarm
|
// stop getting peers from the tracker, gracefully leave the swarm
|
||||||
client.stop()
|
client.stop()
|
||||||
|
|
||||||
|
// scrape
|
||||||
|
client.scape()
|
||||||
|
|
||||||
|
client.on('scrape', function (data) {
|
||||||
|
console.log('got a scrape response from tracker: ' + data.announce)
|
||||||
|
console.log('number of seeders in the swarm: ' + data.complete)
|
||||||
|
console.log('number of leechers in the swarm: ' + data.incomplete)
|
||||||
|
console.log('number of total downloads of this torrent: ' + data.incomplete)
|
||||||
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
### server
|
### server
|
||||||
|
Loading…
Reference in New Issue
Block a user