GithubHelp home page GithubHelp logo

bigspaceship / download Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kevva/download

0.0 21.0 0.0 137 KB

Download and extract files effortlessly with Node.js

License: MIT License

JavaScript 100.00%

download's Introduction

download Build Status

Download and extract files effortlessly

Install

$ npm install --save download

Usage

If you're fetching an archive you can set extract: true in options and it'll extract it for you.

var download = require('download');

// download and extract `foo.tar.gz` into `bar/`
download('foo.tar.gz', 'bar', { extract: true });

// download and save `foo.exe` into `bar/foo.exe` with mode `0755`
download('foo.exe', 'bar', { mode: '0755' });

// download and save `foo.zip` into `bar/foobar.zip`
download({ url: 'foo.zip', name: 'foobar.zip' }, 'bar');

// download and save an array of files in `bar/`
var files = ['foo.jpg', 'bar.jpg', 'cat.jpg'];
download(files, 'bar');

// download, save and rename an array of files in `bar/`
var files = [{
    url: 'foo.jpg',
    name: 'foobar.jpg'
}, {
    url: 'cat.jpg',
    name: 'dog.jpg'
}];
download(files, 'bar');

API

download(url, dest, opts)

Download a file or an array of files to a given destination. Returns an EventEmitter that emits the following possible events:

  • response — Relayed when the underlying http.ClientRequest emits the same event. Listeners called with a http.IncomingMessage instance.
  • data — Relayed when the underlying http.IncomingMessage emits the same event. Listeners called with a Buffer instance.
  • error — Relayed when the underlying http.ClientRequest emits the same event or when the response status code is not in the 200s. Listeners called with an Error instance (in the first case) or the response status code.
  • close — Relayed when the underlying stream.Duplex emits the same event.

Options

You can define options accepted by the request module besides from the options below.

extract

Type: Boolean
Default: false

If set to true, try extracting the file using decompress.

mode

Type: String
Default: undefined

Set mode on the downloaded files.

strip

Type: Number
Default: 0

Equivalent to --strip-components for tar.

CLI

$ npm install --global download
$ download --help

Usage
  $ download <url>
  $ cat <file> | download>

Example
  $ download --out dist --extract https://github.com/kevva/download/archive/master.zip
  $ cat urls.txt | download --out dist

Options
  -e, --extract           Extract archive files on download
  -o, --out               Path to download or extract the files to
  -s, --strip <number>    Strip path segments from root when extracting

License

MIT © Kevin Mårtensson

download's People

Contributors

kevva avatar tschaub avatar endangeredmassa avatar tomccabe avatar afc163 avatar shootaroo avatar

Watchers

Benjamin Bojko avatar  avatar Brittney Kernan avatar James Cloos avatar Frederick Jaime avatar Karen Peng avatar Naim Sheriff avatar Ian René Solano-Kamaiko avatar Lauren Parkos avatar  avatar Nick Hess avatar  avatar  avatar  avatar Eric avatar  avatar Paul Baranowski avatar Nick Dandakis avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.