Socket
Socket
Sign inDemoInstall

download

Package Overview
Dependencies
88
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    download

Download and extract files effortlessly


Version published
Weekly downloads
1.9M
decreased by-3.06%
Maintainers
1
Install size
5.19 MB
Created
Weekly downloads
 

Package description

What is download?

The 'download' npm package is a utility that allows you to download files over HTTP or HTTPS. It is a high-level function that abstracts away the complexity of making HTTP requests and handling streams, making it easier to download files.

What are download's main functionalities?

Downloading files

This feature allows you to download files from a given URL and save them to a specified directory. The function returns a promise that resolves when the download is complete.

const download = require('download');

download('https://example.com/somefile.png', 'dist').then(() => {
    console.log('File downloaded!');
});

Downloading and extracting archives

This feature enables the downloading of archive files like ZIP or TAR and automatically extracts them to a specified directory.

const download = require('download');

download('https://example.com/somearchive.zip', 'dist', { extract: true }).then(() => {
    console.log('Archive downloaded and extracted!');
});

Downloading files with options

This feature allows you to pass custom options such as headers, query parameters, and more, providing additional control over the HTTP request.

const download = require('download');

const options = {
    headers: { 'User-Agent': 'my-custom-agent' }
};

download('https://example.com/somefile.png', 'dist', options).then(() => {
    console.log('File downloaded with custom headers!');
});

Other packages similar to download

Readme

Source

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

Keywords

FAQs

Last updated on 18 May 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc