An open API service indexing awesome lists of open source software.

https://github.com/cdaringe/webjerk-image-set-diff-reporter

generates a static website displaying sets of image differences
https://github.com/cdaringe/webjerk-image-set-diff-reporter

Last synced: 7 days ago
JSON representation

generates a static website displaying sets of image differences

Awesome Lists containing this project

README

          

# webjerk-image-set-diff-reporter

generates a static website displaying sets of image differences.

plays nice with `webjerk-image-set-diff`, but has no tight coupling or interest directly in it!

```js
// see test/index.js for more!
var reporter = require('webjerk-image-set-diff-reporter')
reporter({
differences: [
{
name: 'banana-web-widget',
aFilename: '/reference/banana.png',
bFilename: '/test-run/banana.png'
}
],
dest: '/static-site' // some absolute path!
}).then(...)
```