1.1.1 • Published 5 years ago

node-diff3-wrapper v1.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

node-diff3-wrapper

This is a small utility wrapper around the command line tool diff3. On windows this package will download and install the gnu32 equivilent.

Install

npm install --save node-diff3-wrapper

Usage

var diff3 = require("node-diff3-wrapper");

// three files on disk
diff3.diff("/path/to/file/a", "/path/to/file/original", "/path/to/file/b").then((result) => {
  console.log(result);
})

// one file in memory
diff3.diff("-", "/path/to/file/original", "/path/to/file/b", "contents of file a").then((result) => {
  console.log(result);
})

// diff3 -m
diff3.diffM("/path/to/file/a", "/path/to/file/original", "/path/to/file/b").then((result) => {
  console.log(result);
})  
1.1.1

5 years ago

1.1.0

5 years ago

1.0.1

7 years ago

1.0.0

7 years ago