New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

files-download-zip

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

files-download-zip

This library is used to download images in bulk as a zip file. You need to specify an array of images URL to download. The library will fetch all the images and will create a zip file.

latest
Source
npmnpm
Version
3.1.1
Version published
Maintainers
1
Created
Source

Download Images as a Zip file

This library is used to download images in bulk as a zip file. You need to specify an array of images URL to download. The library will fetch all the images and will create a zip file.

Installation

This package is distributed via npm:

npm install files-download-zip

Usage

const downloadImagesAsZip = require('files-download-zip');

const imgDataArray = [ "http://www.bollywoodlife.com/wp-content/uploads/2014/12/shenaz-treasurywala-111214.jpg" ];

const zipFileName = 'imagesZip';

downloadImagesAsZip.execute(imgDataArray, zipFileName, function() { // callback function

alert('Done');

});

Keywords

download a zip

FAQs

Package last updated on 23 Jan 2018

Did you know?

Socket

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