Package Exports
- gulp-download-stream
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-download-stream) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-download-stream
Request wrapper for gulp, allowing you to download files via http/https. The downloads are streamed and run concurrently.
Installation
npm install gulp-download-stream --saveUsage
var download = require("gulp-download-stream");
download(url)
.pipe(gulp.dest("downloads/"));
Url: Either a url string or an array of url strings or object with keys: file, url or array of these objects. The file key allows you to define the destination file name and the url is the dowonload url.