https://github.com/averagehelper/dedupe
A Node.js utility for finding duplicate files in a directory.
https://github.com/averagehelper/dedupe
Last synced: 8 months ago
JSON representation
A Node.js utility for finding duplicate files in a directory.
- Host: GitHub
- URL: https://github.com/averagehelper/dedupe
- Owner: AverageHelper
- License: gpl-3.0
- Created: 2021-09-04T20:18:27.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-04T22:12:12.000Z (almost 5 years ago)
- Last Synced: 2025-02-15T14:53:56.058Z (over 1 year ago)
- Language: TypeScript
- Size: 88.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dedupe
Literally a duplicate checker.
It checks the current working directory for duplicate files. It doesn't recurse into subdirectories (yet).
## Prerequisites
This project requires [NodeJS](https://nodejs.org/) (version 14 or later) and [NPM](https://npmjs.org/).
To make sure you have them available on your machine,
try running the following command:
```sh
$ npm -v && node -v
6.14.13
v14.16.0
```
## Clone the Repo
```sh
$ cd path/to/parent
$ git clone https://github.com/AverageHelper/dedupe.git
$ cd dedupe
```
## Usage
```sh
$ npm ci # Install dependencies
$ cd /path/to/folder # Go to the folder you wanna check
$ node /path/to/dedupe # Run dedupe
```
## Contributing
We welcome contributions of all sorts!
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Add your changes: `git add .`
4. Commit your changes: `git commit -am 'Add some feature'`
5. Push to the branch: `git push origin my-new-feature`
6. Submit a pull request :sunglasses:
## License
[GNU General Public License v3.0](LICENSE)
This is just a simple project I built to help me check a folder for duplicates one time. Do with it what you want.