Skip to content

Files

Latest commit

fc32b93 · Feb 7, 2013

History

History
executable file
·
25 lines (19 loc) · 412 Bytes

README.md

File metadata and controls

executable file
·
25 lines (19 loc) · 412 Bytes

Zip Archiver

This project provides a simple Zip compression API for NodeJS.

Install

npm -g install zip-archiver

How to use:

var Zip = require('zip-archiver').Zip;

var zip = new Zip({
    file: 'file.zip',
    root: 'opt_root_path'
});
zip.add('file1.txt');
zip.add('file2.txt');
zip.add('folder1/');
zip.add('folder2/', function() {
    zip.done();
    console.log('done.');
});