html-diff

0.0.4 • Public • Published

html-diff

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

NPM version Dependency Status Travis Status

Installation

npm install --save-dev 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');
 
if (diff([{
  path: 'EJSOutputFolder',
  name: 'EJS'
}, {
  path: 'JadeOutputFolder',
  name: 'Jade'
}])) {
  console.log('No diff found :)');
} else {
  console.log('Folders have different contents :(');
}
 

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.3 - Added return value to determine the result of the diffing for tests.

0.0.2 - Forgot to add colors as a dependency.

0.0.1 - Initial release

Readme

Keywords

none

Package Sidebar

Install

npm i html-diff

Weekly Downloads

1

Version

0.0.4

License

MIT

Last publish

Collaborators

  • chriswren