
Security News
crates.io Ships Security Tab and Tightens Publishing Controls
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.
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 (will) use
npm install peerflix-engine
This module is under heavy development. Here be dragons
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
{
size: 100, // Max amount of peers to be connected to.
path: '/tmp/my-file' // Where to save the buffer data.
}
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
The npm package peerflix-engine receives a total of 0 weekly downloads. As such, peerflix-engine popularity was classified as not popular.
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
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.

Research
/Security News
A Chrome extension claiming to hide Amazon ads was found secretly hijacking affiliate links, replacing creators’ tags with its own without user consent.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.