Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zackees/webtorrent.fixed.js
An actively developed, compiled fork of Webtorrent with fixes carefully applied.
https://github.com/zackees/webtorrent.fixed.js
Last synced: about 1 month ago
JSON representation
An actively developed, compiled fork of Webtorrent with fixes carefully applied.
- Host: GitHub
- URL: https://github.com/zackees/webtorrent.fixed.js
- Owner: zackees
- Created: 2022-08-09T07:49:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-11T05:39:28.000Z (over 2 years ago)
- Last Synced: 2023-08-17T06:35:51.603Z (over 1 year ago)
- Language: JavaScript
- Size: 450 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# webtorrent.fixed.js
An actively developed, compiled fork of Webtorrent with fixes carefully applied.The following patches have been applied.
```
const ICECOMPLETE_TIMEOUT = 1 * 1000Which SIGNIFICANTLY speeds up webtorrent.
Made Tracker a global symbol.Made WebTorrent it's own symbol.
Defensively blocked unchoking webSeeds:
if (this.type === "webSeed") {
console.log("webseed blocked unchocked, they are always choked.")
return
}
```