folder-zipper

zips a folder


Keywords
zip, folder
License
MIT
Install
npm install folder-zipper@1.0.0

Documentation

Folder Zipper

Zips a folder of files.

Usage

const folderZipper = require('folder-zipper');

folderZipper('/path/to/folder', '/path/to/archive.zip')
.then(result => {
    console.log('Done!');
})
.catch(error => {
    console.log(error);
});