mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-12 18:36:28 +00:00
Add subpath import for client and server (#535)
This commit is contained in:
parent
8b02864b51
commit
f2f4990501
@ -160,6 +160,7 @@ To start a BitTorrent tracker server to track swarms of peers:
|
||||
|
||||
```js
|
||||
import { Server } from 'bittorrent-tracker'
|
||||
// Or import Server from 'bittorrent-tracker/server'
|
||||
|
||||
const server = new Server({
|
||||
udp: true, // enable udp server? [default=true]
|
||||
@ -267,6 +268,8 @@ Scraping multiple torrent info is possible with a static `Client.scrape` method:
|
||||
|
||||
```js
|
||||
import Client from 'bittorrent-tracker'
|
||||
// Or import Client from 'bittorrent-tracker/client'
|
||||
|
||||
Client.scrape({ announce: announceUrl, infoHash: [ infoHash1, infoHash2 ]}, function (err, results) {
|
||||
results[infoHash1].announce
|
||||
results[infoHash1].infoHash
|
||||
|
10
package.json
10
package.json
@ -64,7 +64,15 @@
|
||||
"node": ">=16.0.0"
|
||||
},
|
||||
"exports": {
|
||||
"import": "./index.js"
|
||||
".": {
|
||||
"import": "./index.js"
|
||||
},
|
||||
"./client": {
|
||||
"import": "./client.js"
|
||||
},
|
||||
"./server": {
|
||||
"import": "./server.js"
|
||||
}
|
||||
},
|
||||
"keywords": [
|
||||
"bittorrent",
|
||||
|
Loading…
Reference in New Issue
Block a user