
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
peerflix-engine
Advanced tools
Low level streaming torrent client that exposes files as node.js streams and downloads pieces based on demand
The streaming torrent engine that peerflix uses
npm install peerflix-engine
peerflix-engine is a node module that allows you to access files inside a torrent as node streams.
var peerflixEngine = require('peerflix-engine');
var fs = require('fs');
var engine = peerflixEngine(fs.readFileSync('my-test-file.torrent'));
engine.files.forEach(function(file) {
console.log('filename:', file.name);
var stream = file.createReadStream();
// stream is readable stream to containing the file content
});
You can pass start and end options to stream to slice the file
// get a stream containing bytes 10-100 inclusive.
var stream = file.createReadStream({
start: 10,
end: 100
});
Per default no files are downloaded unless you create a stream to them.
If you want to fetch a file anyway use the file.select and file.deselect method.
When you start peerflix-engine it will connect to the torrent dht and fetch pieces according to the streams you create.
engine = peerflixEngine(opts)Create a new engine instance. Options can contain the following
{
connections: 100, // Max amount of peers to be connected to.
path: '/tmp/my-file', // Where to save the buffer data.
dht: true // Whether or to use the dht to find peers.
// Defaults to true
}
engine.verify(cb)Verify the currently saved data before starting the swarm. You should call this as the first method if you want to persist data.
engine.files[...]An array of all files in the torrent. See the file section for more info on what methods the file has
engine.destroy(cb)Destroy the engine (including the saved data) completely. The callback is optional
engine.listen([port], cb)Listen for incoming peers on the specified port. Port defaults to 6881
engine.swarmThe attached peer-wire-swarm instance
file = engine.files[...]A file in the torrent. They contains the following data
{
name: 'my-filename.txt',
path: 'my-folder/my-filename.txt',
length: 424242
}
file.select()Selects the file to be downloaded, but at a lower priority than streams. Useful if you know you need the file at a later stage.
file.deselect()Deselects the file which means it won't be downloaded unless someone creates a stream to it
stream = file.createReadStream(opts)Create a readable stream to the file. Pieces needed by the stream will be prioritized highly. Options can contain the following
{
start: startByte,
end: endByte
}
Both start and end are inclusive
MIT
FAQs
Low level streaming torrent client that exposes files as node.js streams and downloads pieces based on demand
We found that peerflix-engine 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
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.