1.0.5 • Published 3 years ago

wdfiledownloader v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

filedownloader

安装

npm i --save @gswl/filedownloader

使用

import filedownload from "@gswl/filedownloader"

/**
 * @param downloadlink 下载链接
 * @param unzipdir 文件存放解压地址
 * */
filedownload(downloadlink, unzipdir).then(res => {
    // res: 
    // download success 非zip文件下载成功
    // unzip success zip文件下载解压成功

}).catch(err => {
    // err 

})