node-folder-diff
v2.0.1
Published
make diff between two folder, gen patch file what describe the difference of folders
Downloads
6
Readme
folder-diff
make diff between two folder or zip, gen patch file what describe the difference of folders
support Asynchronous support bsdiff
install
npm install node-folder-diff
api
var diff = require('node-folder-diff');
diff.diff(old_folder_path, new_folder_path, {bsdiff : true}).then(function(archive){
var output = fs.createWriteStream(...);
archive.pipe(output);
});