https://github.com/joeferner/node-dirdiff
Diffs two directories
https://github.com/joeferner/node-dirdiff
Last synced: 8 months ago
JSON representation
Diffs two directories
- Host: GitHub
- URL: https://github.com/joeferner/node-dirdiff
- Owner: joeferner
- Created: 2012-08-10T21:16:28.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2016-06-24T18:57:01.000Z (about 10 years ago)
- Last Synced: 2025-04-20T15:08:00.616Z (about 1 year ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 3
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
dirdiff
=======
Diffs two directories.
## Quick Examples
```javascript
var dirdiff = require("dirdiff");
dirdiff('./dir1Name/', './dir2Name/', {
fileContents: true
}, function (err, diffs) {
console.log(diffs);
});
```