1.0.1 • Published 4 years ago
axiosstreamdownload v1.0.1
axios-stream-download
An Easy way to download binary files like png, exes, jpeg, iso and so more Via Axios
Examples
var axios = require('axios');
require('axiosstreamdownload')(axios) // injects axios-stream-download to the axios module
axios.download('https://unsplash.com/photos/AaEQmoufHLk/download?force=true','./mypic.png')
.then(_ => console.log('success')) // when it succeeds to create the file
.catch(err => console.error(err)) // when it fails to create the file