Skip to content
/ bsdp Public
forked from tsyeyuanfeng/bsdp

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

Notifications You must be signed in to change notification settings

xs-c/bsdp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 57.6%
  • HTML 28.5%
  • Roff 5.1%
  • XSLT 2.7%
  • Shell 1.8%
  • JavaScript 1.6%
  • Other 2.7%