1.0.1 • Published 5 years ago

network-file-downloader v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

网络文件下载器

安装

npm install network-file-downloader --save

使用方法

let download = require('network-file-downloader')
download({
  list: [
          'https://static.webascii.cn/a/b/c.js',
          'https://static.webascii.cn/a/b/d.css',
        ],
  directory: 'demo',
  together: false
})

版本 v1.0.* 参数详解

list {Array}

必填
文件路径(支持http与https混排)

directory {String}

非必填(默认'default')
将文件下载到此文件夹

together {Boolean}

非必填(默认false)
true: 
    [path]/[directory]/c.js
    [path]/[directory]/d.css
false:
    [path]/[directory]/a/b/c.js
    [path]/[directory]/a/b/d.css
1.0.1

5 years ago

1.0.0

5 years ago