easy-zip

0.0.4 • Public • Published

Easy zip is extend from jszip,and run in the nodejs.

Installation

$ npm install easy-zip

Examples

var EasyZip = require('easy-zip').EasyZip;
 
var zip = new EasyZip();
//add text 
zip.file('hello.txt','Hello World!');
zip.writeToFile('text.zip');//write zip data to disk
 
//add folder
var zip2 = new EasyZip();
var jsFolder = zip2.folder('js');
jsFolder.file('hello.js','alert("hello world")');
zip2.writeToFile('folder.zip');
 
//add file
var zip3 = new EasyZip();
zip3.addFile('main.js','easyzip.js',function(){
    zip3.writeToFile('file.zip');
});
 
//batch add files
var files = [
    {source : 'easyzip.js',target:'easyzip.js'},
    {target : 'img'},//if source is null,means make a folder
    {source : 'jszip.js',target:'lib/tmp.js'}
];
var zip4 = new EasyZip();
zip4.batchAdd(files,function(){
    zip4.writeToFile('batchadd.zip');
});
 
//zip a folder
var zip5 = new EasyZip();
zip5.zipFolder('../easy-zip',function(){
    zip5.writeToFile('folderall.zip');
});
 
//write data to http.Response
//zip.writeToResponse(response,'attachment.zip');
 
//write to file sync 
//zip.writeToFileSycn(filePath);

License

BSD

Readme

Keywords

none

Package Sidebar

Install

npm i easy-zip

Weekly Downloads

5,615

Version

0.0.4

License

BSD

Last publish

Collaborators

  • owenchong