Giter Club home page Giter Club logo

download's Introduction

download Build Status

Download and extract files

See download-cli for the command-line version.

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');

new Download({mode: '755'})
    .get('http://example.com/foo.zip')
    .get('http://example.com/cat.jpg')
    .dest('dest')
    .run();

API

new Download(options)

Creates a new Download instance.

options

Type: object

Options for got or the underlying http/https request can be specified, as well as options specific to the download module as described below.

options.extract

Type: boolean
Default: false

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

options.mode

Type: string

Set mode on the downloaded file, i.e {mode: '755'}.

options.strip

Type: number
Default: 0

Remove leading directory components from extracted files.

.get(url, [dest])

url

Type: string

Add a URL to download.

dest

Type: string

Set an optional destination folder that will take precedence over the one set in .dest().

.dest(dir)

dir

Type: string

Set the destination folder to where your files will be downloaded.

.rename(name)

name

Type: function or string

Rename your files using gulp-rename.

.use(plugin)

plugin(response, url)

Type: function

Add a plugin to the middleware stack.

response

The response object.

url

The requested URL.

.run(callback)

callback(err, files)

Type: function

files

Contains an array of vinyl files.

License

MIT © Kevin Mårtensson

download's People

Contributors

kevva avatar shinnn avatar floatdrop avatar sindresorhus avatar tschaub avatar ahmednuaman avatar es128 avatar piranna avatar endangeredmassa avatar vweevers avatar afc163 avatar shootaroo avatar

Watchers

James Cloos 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.