html-diff

Diffs folders of .html files to make sure they are the same

Usage no npm install needed!

<script type="module">
  import htmlDiff from 'https://cdn.skypack.dev/html-diff';
</script>

README

html-diff

Diff folders of html files to make sure they are the same

NPM version Dependency Status

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