itty-bitty-torrent

0.1.2 • Public • Published

node-bittorent

A simple bittorrent client extracted from the awesome peerflix, built for Node.

Install

npm install itty-bitty-torrent

Example

var Torrent = require('itty-bitty-torrent');
var downloadLocation = __dirname + '/download/';
var torrent = __dirname + '/IAmALegalTorrent.torrent'; // or http URL

var client = new Torrent(torrent, downloadLocation, function(err){
	if (!err) client.download();

	// Get speed
	setInterval(function(){
		console.log(Math.round(client.speed()) / 1000);
	}, 500);

	// Get percentage downloaded
	setInterval(function(){
		console.log(Math.round(client.percentage()));
	}, 10000);
});

client.on('finished', function(){
	// The torrent has finished downloading.
});

// stop our torrent downloading & seeding
client.stop();

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i itty-bitty-torrent

Weekly Downloads

9

Version

0.1.2

License

none

Last publish

Collaborators

  • bmcmahen