You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

webseeded-torrent-generator

Package Overview
Dependencies
Maintainers
3
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webseeded-torrent-generator

Generate webseeded torrent files from urls to files.

0.9.0
latest
Source
npmnpm
Version published
Maintainers
3
Created
Source

##Background Knowledge Webseeding means to use servers as bittorrent clients, simulating piece requests using range requests (which the server must support). This is mostly benefitial for bootstrapping swarms.

There are very particular requirements on your server's file paths. The torrent name must be a common segment of all file urls, so each url is constructed by combining the base, the torrent name, and the file name.

If you wish to create a torrent out of the three following urls:

http://ia700201.us.archive.org/6/items/jj2005-02-27.fm.shnf/jj2005-02-27.fm.d1.md5
http://ia700201.us.archive.org/6/items/jj2005-02-27.fm.shnf/jj2005-02-27.fm.d1.txt

Then you must specify the following arguments:

var base = 'http://ia700201.us.archive.org/6/items/';
var name = 'jj2005-02-27.fm.shnf';
var files = [
    'jj2005-02-27.fm.d1.md5',
    'jj2005-02-27.fm.d1.txt'
];

Warning: The base must end with /, while the name and the files must not.

##Usage

{
  "dependencies": {
    "webseeded-torrent-generator": "git://github.com/bittorrent/webseeded-torrent-generator.git"
  }
}
var Torrent = require('webseeded-torrent-generator');
var base = 'http://ia700201.us.archive.org/6/items/';
var name = 'jj2005-02-27.fm.shnf';
var files = [
    'jj2005-02-27.fm.d1.md5',
    'jj2005-02-27.fm.d1.txt'
];

var torrent = new Torrent(base, name, files);
// if you want to write out .torrent files, do this
torrent.getMetadata().then(function (buf) {
    fs.writeFileSync('tmp.torrent', buf);
});

// if you want to serve up .torrent files via express,
// do something like the following (assuming we have request/result objects)
torrent.getMetadata().then(function (buf) {
    result.type('application/x-bittorrent');
    result.attachment(name + '.torrent');
    result.send(200, buf);
});

Testing

grunt

Keywords

BitTorrent

FAQs

Package last updated on 10 Sep 2014

Did you know?

Socket

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.

Install

Related posts