A small, zero-dependency text differencing library extracted from the open source VS Code editor. The implementation is based on the difference algorithm described in "An O(ND) Difference Algorithm and its variations" by Eugene W. Myers.
The package includes typescript definitions.
npm install vscode-diff --save
Typescript:
import { DiffComputer, IDiffComputerOpts, ILineChange } from 'vscode-diff';
let originalLines: string[] = ["hello", "original", "world"];
let modifiedLines: string[] = ["hello", "modified", "world", "foobar"];
let options: IDiffComputerOpts = {
shouldPostProcessCharChanges: true,
shouldIgnoreTrimWhitespace: true,
shouldMakePrettyDiff: true,
shouldComputeCharChanges: true,
maxComputationTime: 0 // time in milliseconds, 0 => no computation limit.
}
let diffComputer = new DiffComputer(originalLines, modifiedLines, options);
let lineChanges: ILineChange[] = diffComputer.computeDiff().changes;
console.log(JSON.stringify(lineChanges, null, 2));
// =>
// [
// {
// "originalStartLineNumber": 2,
// "originalEndLineNumber": 2,
// "modifiedStartLineNumber": 2,
// "modifiedEndLineNumber": 2,
// "charChanges": [
// {
// "originalStartLineNumber": 2,
// "originalStartColumn": 1,
// "originalEndLineNumber": 2,
// "originalEndColumn": 9,
// "modifiedStartLineNumber": 2,
// "modifiedStartColumn": 1,
// "modifiedEndLineNumber": 2,
// "modifiedEndColumn": 9
// }
// ]
// },
// {
// "originalStartLineNumber": 3,
// "originalEndLineNumber": 0,
// "modifiedStartLineNumber": 4,
// "modifiedEndLineNumber": 4
// }
// ]
Each element in the produced lineChanges array corresponds to a change from the original lines to the modified lines.
The column and row indices are 1-based. If a 0 index is present, it means that a row has been added/removed, eg:
{
"originalStartLineNumber": 3,
"originalEndLineNumber": 0,
"modifiedStartLineNumber": 4,
"modifiedEndLineNumber": 4
}
means that the 4th line in the modified text was added after line 3 in the original text.
The opposite:
{
"originalStartLineNumber": 4,
"originalEndLineNumber": 4,
"modifiedStartLineNumber": 3,
"modifiedEndLineNumber": 0
}
means that the 4th line in the original text was removed from after line 3 in the modified text.
- Fix issue 121436
- Fix missing typescript types
- Fix issue 119051
- New DiffComputer option: maxComputationTime. Specify maximum time that the diff computer should run. Specify 0 for no limit. For character changes (
charChanges
) there is a new hard coded maximum limit of 5 seconds. - New return type from diffComputer:
interface IDiffComputerResult {
quitEarly: boolean;
changes: ILineChange[];
}
Initial release
Since we do not want this package to differ from the original implementation in VS Code, no changes that differs from the source repository will be merged. Any changes that only affect this npm package (like changes to this README) are welcome via pull requests.
If you want to help keep the diff algorithm up to date, you'll find from which commit and what file the code comes from in the top of the file, e.g:
src/diffComputer.ts
// Updated from commit 46d1426 - vscode/src/vs/editor/common/diff/diffComputer.ts
Any help documenting the diff API is very welcome.
The source code of this package is directly extracted from the open source software VS Code, Copyright (c) Microsoft Corporation. The VS Code source files is licensed under the MIT license. See src/LICENSE.txt for additional details.
Only minor modifications have been made to the source files:
- Removed code unused by the diff implementation.
- Updated import paths to reflect their new location.
- Added comment in each source file with a commit hash from their last modification.
I am in no way affiliated to Microsoft or the VS Code team.