Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

html-diff

chriswren88MIT0.0.4

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

htmldiff, html, diff, template, engine

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