项目作者: atomicpages

项目描述 :
A better download utility for gulp
高级语言: JavaScript
项目地址: git://github.com/atomicpages/gulp-download2.git
创建时间: 2017-07-18T06:00:21Z
项目社区:https://github.com/atomicpages/gulp-download2

开源协议:MIT License

下载


gulp-download-2

Heavily derived from gulp-download-stream and gulp-download

A tiny hyperquest gulp wrapper to download files over HTTP/HTTPS/FTP/FTPS + following redirects.

Features

  • Progress bar
  • Concurrent downloads without busy-waiting
  • Redirect support (up to 10 hops)
  • ftp(s):// support

Here’s a nice example:

  1. Downloading http://ipv4.download.thinkbroadband.com/512MB.zip...
  2. downloading [====================] 205491/bps 100% 0.0s
  3. Done
  4. downloading [====================] 358297/bps 100% 0.0s
  5. Done
  6. downloading [====================] 2664869/bps 100% 0.0s
  7. Done
  8. downloading [=======-------------] 2126399/bps 33% 65.9s
  9. Done

Problem

Other gulp download plugins buffer file contents in full before flushing to disk. gulp-download2 bypasses extra buffering by directly writing chunks to disk.

Solution

gulp-download2 avoids unnecessary and connection pooling.

Benchmarks: gulp-download vs. gulp-download2

In gulp-download2 we saw an average increase of CPU utilization by 31% whereas gulp-download writes the file content to a buffer and writes to the disk. This process is not as labor intensive as system calls:

gulp-download2 gulp-download
cpu utilization dl_cpu

Looking at the memory consumption in gulp-download2 shows a max memory consumption of 262 MB whereas gulp-download buffers the content into memory leading to a steady increase:

gulp-download2 gulp-download
dl2_mem dl_mem

Note: Profiling done with Syrupy.py and v8-profile.

Installation

  1. npm install gulp-download2 --save-dev # or to use yarn...
  2. yarn add gulp-download2 --dev

Basic Usage

  1. const gulp = require('gulp');
  2. const download = require('gulp-download2');
  3. gulp.task('download', () => download('http://example.com/file.jpg').pipe(gulp.dest('build')));

Download Multiple Files

To download multiple files, pass an array of strings to download.

  1. gulp.task('download', function () {
  2. return download(['http://example.com/file.a', 'https://example.com/file.b']).pipe(
  3. gulp.dest('build')
  4. );
  5. });

The files are downloaded concurrently into stream of Vinyl files, and so are suitable to be piped into other gulp plugins. Each Vinyl file is also itself a stream, and so any downstream plugins must also support stream-based Vinyl files.

Specify Local File Name

You can specify the local file names of files downloaded. You can do this for one file:

  1. gulp.task('download', function () {
  2. return download({
  3. url: 'http://example.com/file.txt',
  4. file: 'foo.txt',
  5. }).pipe(gulp.dest('build'));
  6. });

or for multiple files:

  1. gulp.task('download', function () {
  2. const files = [
  3. {
  4. url: 'http://example.com/file.txt',
  5. file: 'foo.txt',
  6. },
  7. {
  8. url: 'http://example.com/file2.csv',
  9. file: 'data.csv',
  10. },
  11. ];
  12. return download(files).pipe(gulp.dest('build'));
  13. });

Handling Errors

There are two different kinds of errors that can arise when we attempt to download from a remote resource:

  1. Hyperquest encounters an error with the stream
    • Sends event object as a callback parameter
  2. Hyperquest returns an error status code (i.e. 404)
    • res.statusCode is passed as a callback parameter

In either case, we can handle these by providing an error callback in our gulp task:

  1. gulp.task('download', function () {
  2. return download('http://foo.com/sample.txt', {
  3. errorCallback: function (code) {
  4. if (code === 404) {
  5. console.error('Un oh, something bad happened!');
  6. doSomethingElse();
  7. } else if (code === 500) {
  8. console.error('Fatal exception :(');
  9. process.exit(1);
  10. }
  11. },
  12. });
  13. });

Pass Options to Hyperquest

You can pass options to request as the second argument. For example, you can request using HTTP authentication:

  1. gulp.task('download', function () {
  2. const config = {
  3. auth: {
  4. user: 'john_doe',
  5. pass: '123_secret',
  6. },
  7. };
  8. return download(
  9. {
  10. url: 'http://example.com/file.txt',
  11. file: 'foo.txt',
  12. },
  13. config
  14. ).pipe(gulp.dest('build'));
  15. });

See hyperquest options for more details.

Options

Option Type Required Description
ci boolean No Override default detection and suppress progress bars in CI mode
errorCallback (code: number) => void No Customize errors during download failure