
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
fake-bittorrent-client
Advanced tools
A Node JS BitTorrent API implementation for testing or cheating on trackers
A Node.js BitTorrent API implementation for testing or cheating on trackers.
All in name, this API will never upload or download data from peers, it will only notify tracker.
import { FakeBitTorrentClient } from 'fake-bittorrent-client';
const trackerUrl = 'http://my.tracker.com:8080/announce';
const torrentHash = 'ee8d8728f435fd550f83852aabab5234ce1da528';
const options = {
peerId: '-DE13F0-ABCDEF', // Deluge 1.3.15
port: 31452, // Listen port ( for fake, API will never open a port )
timeout: 1500, // Optional
uploaded: 1024 * 16, // Optional, data "already" uploaded
downloaded: 1024 * 16 // Optinal, data "already" downloaded
};
const client = new FakeBitTorrentClient(trackerUrl, torrentHash, options);
const bytes = 1024 * 1024 * 32; // 32 MB
client
.upload(bytes)
.then(() => console.log(['Uploaded ', bytes, ' bytes to ', trackerUrl].join('')))
.catch(err => console.error(['Error : ', err].join('')));
client
.download(bytes)
.then(() => console.log(['Downloaded ', bytes, ' bytes from ', trackerUrl].join('')))
.catch(err => console.error(['Error : ', err].join('')));
$ fake-bittorrent-client --tracker 'http://my.tracker.com:8080/announce' --hash 'ee8d8728f435fd550f83852aabab5234ce1da528' --upload 33554432 --timeout 1500
Uploaded 33554432 bytes to http://my.tracker.com:8080/announce
$ fake-bittorrent-client --tracker 'http://my.tracker.com:8080/announce' --hash 'ee8d8728f435fd550f83852aabab5234ce1da528' --download 33554432 --timeout 1500
Downloaded 33554432 bytes from http://my.tracker.com:8080/announce
All contributions are welcome, juste open a pull request.
I use GitHub for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details
FAQs
A Node JS BitTorrent API implementation for testing or cheating on trackers
The npm package fake-bittorrent-client receives a total of 6 weekly downloads. As such, fake-bittorrent-client popularity was classified as not popular.
We found that fake-bittorrent-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.