
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
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
engine.wiresAn array of all peer-wire-protocols that are currently connected
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 16 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.

Research
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.