html-diff
v0.0.4
Published
Diffs folders of .html files to make sure they are the same
Downloads
34
Readme
html-diff
Diff folders of html files to make sure they are the same
Installation
npm install --save html-diff
html-diff([folders])
folders
Type: Array of Objects
Array of folder objects to diff. Each object must contain the path
property to read files from and name
property to print when diffing.
Sample Usage
Here is an example using html-diff
to ensure that the outputs from Jade and EJS templates produce the same html:
var diff = require('html-diff');
diff([{
path: 'EJSOutputFolder',
name: 'EJS'
}, {
path: 'JadeOutputFolder',
name: 'Jade'
}]);
This will log any differences between html file paths in the folders as well as differences in the content of html files which have the same path.
Changelog
0.0.1 - Initial release