-
-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Downloading Whole Torrent. #111
Comments
You should call |
Here is a full snippet showing what @asapach is talking about: var engine = torrentStream(someTorrent, {
path: 'the-folder-you-want-to-store-the-files-in'
})
engine.on('ready', function () {
engine.files.forEach(function (file) {
file.select()
})
engine.on('idle', function () {
console.log('all files downloaded!')
})
}) |
@mafintosh, which reminds me, there should be a dedicated event for when the download is complete. That would allow us to fix #109 and #48. |
@asapach should we call it |
@mafintosh, |
I appreciate it you guys. |
see #113 |
Hello,
This module seems to be the best fit, but i can't seem to get it to function properly at all.
For the record, I am trying to use this as a torrent downloader, so it will write the torrent to a file..
var torrentStream = require('torrent-stream');
var engine = torrentStream('magnent here');
engine.on('ready', function() {
engine.files.forEach(function(file) {
if(file.name == "filename here.") {
var stream = file.createReadStream();
}
});
});
How can i make this code download all of the files in the torrent, and save them to the disk?
Thank you!
The text was updated successfully, but these errors were encountered: