0.0.4 • Published 11 years ago

html-diff v0.0.4

Weekly downloads
3
License
-
Repository
-
Last release
11 years ago

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

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago