async-file-dl
v0.4.3
Published
A simple async file downloader
Downloads
8
Readme
async-file-dl
A simple asynchronous file downloader based on axios.
Installation
$ npm install async-file-dl
Usage
const { download } = require('async-file-dl');
download('http://example.com/', '.', 'example.html')
.then(file => console.log('download successful')
.catch(console.error);