/dedupe

A Node.js utility for finding duplicate files in a directory.

Primary LanguageTypeScriptGNU General Public License v3.0GPL-3.0

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 (version 14 or later) and NPM. To make sure you have them available on your machine, try running the following command:

$ npm -v && node -v
6.14.13
v14.16.0

Clone the Repo

$ cd path/to/parent
$ git clone https://github.com/AverageHelper/dedupe.git
$ cd dedupe

Usage

$ 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 😎

License

GNU General Public License v3.0

This is just a simple project I built to help me check a folder for duplicates one time. Do with it what you want.