marcelklehr / diff_match_patch

Repackaging of Neil Fraser's world famous diff_match_patch as a node.js module / component

Home Page:http://code.google.com/p/google-diff-match-patch/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

diff_match_patch

A re-packaging of the JavaScript library by Neil Fraser.

The Diff Match and Patch libraries offer robust algorithms to perform the operations required for synchronizing plain text.

This library implements Myer's diff algorithm which is generally considered to be the best general-purpose diff. A layer of pre-diff speedups and post-diff cleanups surround the diff algorithm, improving both performance and output quality.

This library also implements a Bitap matching algorithm at the heart of a flexible matching and patching strategy.

  • Diff. Compare two blocks of plain text and efficiently return a list of differences.
  • Match. Given a search string, find its best fuzzy match in a block of plain text. Weighted for both accuracy and location.
  • Patch. Apply a list of patches onto plain text. Use best-effort to apply patch even when the underlying text doesn't match.

Installation

$ npm install diff_match_patch
... or
$ component install marcelklehr/diff_match_patch
... or

Usage

You'll be using instances of the diff_match_patch class:

var dmpmod = require('diff_match_patch');
var dmp = new dmpmod.diff_match_patch();

var text1 = "I'm some text";
var text2 = "I'm some other text";

console.log(dmp.diff_main(text1, text2)); // print the difference of the texts

For more detailed documentation, as well as a complete overview of the API, please refer to the original project site).

License

Copyright 2006 Google Inc. Licensed under the Apache License, Version 2.0.

About

Repackaging of Neil Fraser's world famous diff_match_patch as a node.js module / component

http://code.google.com/p/google-diff-match-patch/


Languages

Language:JavaScript 100.0%