leeroybrun / node-mt-files-downloader

Simple module letting you download a file from the web, compute stats, retry in case of error, etc
MIT License
84 stars 44 forks source link

Multi Threaded Files Downloader

NPM

NOT VERY STABLE: This module is not very stable, and is in need of a big refactor to work with the latest mt-downloader version. I will try to do this when I have the time, but unfotrunately other projects are taking a lot of time from me right now. Thanks for your understanding.

This module wrap the mt-downloader module and let you :

Install

npm install mt-files-downloader

Usage

Require the module :

var Downloader = require('mt-files-downloader');

Create a new Downloader instance :

var downloader = new Downloader();

Create a new download :

var dl = downloader.download('FILE_URL', 'FILE_SAVE_PATH');

Start the download :

dl.start();

Examples

You can find complete examples in the examples/ folder :

Events

You can then listen to those events :

Downloader object

Methods

Formatters methods

The Downloader object exposes some formatters for the stats as static methods :

Download object

Properties

Methods

TODO

Licence

The MIT License (MIT)

Copyright (c) 2015 Leeroy Brun

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.