Generate increment file with two versions of a file base on old version.
incrementify [options] oldfile newfile
Supported options:
- -c chunkSize: set chunkSize (default: 12)
- -o filename: use [output-file] as output instead of STDOUT
var incrementify = require("incrementify").build;
var ret = incrementify(file_with_old_version, file_with_new_version);
console.log(JSON.stringify(ret));
Also support config
var ret = incrementify(arg1, arg2, {
oldfile_type: 'content', // default: 'path'
newfile_type: 'path', // default: 'path'
chunkSize: 12, //default size
output: 'filename' // make sure you have write permission to this file
});
The MIT License (MIT)