Skip to content

sole/node-zip-folder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-zip-folder

zips a folder and calls your callback when it's done AKA: something that maybe already exists in npmjs.org, but that I couldn't find.

Usage

var zipFolder = require('zip-folder');

zipFolder('/path/to/the/folder', '/path/to/archive.zip', function(err) {
	if(err) {
		console.log('oh no!', err);
	} else {
		console.log('EXCELLENT');
	}
});

Tests

Tests are in tests.js and built with nodeunit. Run npm test to run the tests.

About

zips a folder and calls your callback when it's done

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published