tsyeyuanfeng / bsdp

An binary diff&patch library based on bsdiff algorithm(v4.3)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BSDP

An binary diff&patch library based on bsdiff algorithm(v4.3)

INSTALLATION

Install with npm globally:

$ npm install --global bsdp

or as a dependency for your project:

npm install --save bsdp

USAGE

Use as a command-line tool:

$ bsdp diff oldfile newfile patchfile
$ bsdp patch oldfile newfile patchfile

or as a lib:

const bsdp = require('bsdp');

bsdp.diff(oldfile, newfile, patchfile);
bsdp.patch(oldfile, newfile, patchfile);

About

An binary diff&patch library based on bsdiff algorithm(v4.3)


Languages

Language:C 57.6%Language:HTML 28.5%Language:Roff 5.1%Language:XSLT 2.7%Language:Shell 1.8%Language:JavaScript 1.6%Language:Makefile 1.4%Language:CSS 0.4%Language:Perl 0.4%Language:C++ 0.3%Language:Python 0.2%