Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 326 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 326 Bytes

large-download

Usage

const LargeDownload = require('large-download');

const download = new LargeDownload({
    link: 'http://example.com',
    destination: './some/path/to/local/file',
    timeout: 300000,
    retries: 3
});

const loadPromise = download.load();

See jsdoc for further information.