git-diff
Returns the git diff of two strings
Introduction
git-diff will use git
(if installed) and printf
(if available) to get the real git diff of two strings.
If either command is unavailable, git-diff instead returns a very good fake git diff.
Usage
npm install --save git-diff
git-diff takes 3 arguments, the old string to diff, the new string to diff and optionally an options object
git-diff returns the git diff or undefined
where there is no difference.
An example to demonstrate usage:
var gitDiff = require('git-diff')
var oldStr = 'fred\nis\nfunny\n'
var newStr = 'paul\nis\nfunny\n'
var actual = gitDiff(oldStr, newStr, {color: false})
expect(actual).to.equal('@@ -1,3 +1,3 @@\n-fred\n+paul\n is\n funny\n')
Options object
Available options are:
color | flags | forceFake | noHeaders | save | wordDiff
Default options are:
var options = {
color: true,
flags: null,
forceFake: false,
noHeaders: false,
save: false,
wordDiff: false
}
Where options are not self explanatory, further assistance is given below.
flags (string | null)
The flags option allows you to use any git diff flags
It only applies to real git diffs and will not effect the returned git diff if it is fake.
An example to illustrate:
var gitDiff = require('git-diff')
var oldStr = 'fred\n is \nfunny\n'
var newStr = 'paul\nis\n funny \n'
var actual = gitDiff(oldStr, newStr, {color: false, flags: '--diff-algorithm=minimal --ignore-all-space'})
expect(actual).to.equal('@@ -1,3 +1,3 @@\n-fred\n+paul\n is\n funny \n')
forceFake (boolean)
git-diff will first try to use git
and printf
to get the real git diff of two strings.
If it cannot, it instead returns a very good fake git diff.
A fake git diff is faster to obtain but may not be 100% representative of a real git diff.
The flags option is unavailable when faking and fake diffs never have a header.
However, if a fake is good enough and speed is of the essence then you may want to force a fake git diff.
The forceFake option allows you to do exactly that:
var gitDiff = require('git-diff')
var oldStr = 'fred\nis\nfunny\n'
var newStr = 'paul\nis\nfunny\n'
var actual = gitDiff(oldStr, newStr, {color: false, forceFake: true})
expect(actual).to.equal('-fred\n+paul\n is\n funny\n')
save (boolean)
Its annoying to keep passing the same options every time.
git-diff, if instructed to do so, will remember previously used options for you.
When the {save: true}
option is used in a call to git-diff subsequent calls remember the options.
var gitDiff = require('git-diff')
var oldStr = 'fred\nis\nfunny\n'
var newStr = 'paul\nis\nfunny\n'
var actual
actual = gitDiff(oldStr, newStr, {color: false, save: true, wordDiff: true})
expect(actual).to.equal('@@ -1,3 +1,3 @@\n[-fred-]{+paul+}\nis\nfunny\n')
actual = gitDiff(oldStr, newStr)
expect(actual).to.equal('@@ -1,3 +1,3 @@\n[-fred-]{+paul+}\nis\nfunny\n')
Here, the second call remembers that the color option is off and wordDiff is on. {color: false}
and {wordDiff: true}
are now the defaults.
wordDiff (boolean)
This option allows you to choose between a line diff {wordDiff: false}
and a word diff {wordDiff: true}
console.logging the returned git-diff for both a line diff and a word diff produces:
FAQs
Q: What is a real git diff?
A: A real git diff refers to the actual diff output produced by git itself
Q: What is a fake git diff?
A: A fake git diff is a programmatic attempt to reproduce / mimic the diff output produced by git
Q: How can I tell if the returned git diff is real or fake?
A: If the @@ -1,3 +1,3 @@ header is present then the returned git diff is real
If the header is absent then either the noHeaders option is on or the returned git diff is fake
Q: Will my environment produce real or fake git diffs?
A: Linux and mac have the printf
command available. On Windows git bash makes printf
available.
Where git is installed then any of these environments will produce a real git diff.
Asynchronous execution
git-diff exposes a promise based asynchronous solution:
var gitDiff = require('git-diff/async')
var oldStr = 'fred\nis\nfunny\n'
var newStr = 'paul\nis\nfunny\n'
gitDiff(oldStr, newStr, {color: false}).then(function(actual) {
expect(actual).to.equal('@@ -1,3 +1,3 @@\n-fred\n+paul\n is\n funny\n')
})
Author says
What's the difference between how God treats the righteous and the wicked?
And God saw that the light was good. And God separated the light from the darkness. Genesis 1:4 ESV
And He will do it again:
Let both grow together until the harvest, and at harvest time I will tell the reapers, “Gather the weeds first and bind them in bundles to be burned, but gather the wheat into my barn.” Matthew 13:30 ESV
Much love :D