Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

find-duplicate-strings

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

find-duplicate-strings

Easy to use CLI that finds duplicate strings in a directory and stores them in a external file for easy reference

  • 2.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by150%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status codecov

find-duplicate-strings

Easy to use CLI that finds duplicate strings in a directory and stores them in a external file for easy reference

Getting started

Install:

npm i -g find-duplicate-strings

Run:

find-duplicate-strings

You will be asked to enter a path to a existing directory to be scanned for duplicate string values:

? Please provide a directory to scan for duplicate values.
./data

You can provide any directories that you would like to exclude:

? Please provide any directories that you want to skip (separated list by ;) (node_modules)

Then you will be asked to enter the file extensions that you want to scan:

? Please provide the file extensions you want to scan or leave empty to scan all files (separated list by ;)

It will then ask you if you would like to scan any other directories (the results will be stored in a single file):

? Would you like to scan another directory? (Y/n)

When done, if you aren't running in silent mode it will output a table containing it's first 10 findings:

┌─────────┬──────────────┬───────────────────────────────┐
│ (index) │      0       │               1               │
├─────────┼──────────────┼───────────────────────────────┤
│    0    │    'one'     │ { count: 2, files: [Array] }  │
│    1    │    'bar'     │ { count: 15, files: [Array] } │
│    2    │    'two'     │ { count: 2, files: [Array] }  │
│    3    │    'foo'     │ { count: 14, files: [Array] } │
│    4    │   'three'    │ { count: 2, files: [Array] }  │
│    5    │    'four'    │ { count: 2, files: [Array] }  │
│    6    │    'baz'     │ { count: 2, files: [Array] }  │
│    7    │    'five'    │ { count: 2, files: [Array] }  │
│    8    │   'foobar'   │ { count: 6, files: [Array] }  │
│    9    │ 'not-unique' │ { count: 2, files: [Array] }  │
│   10    │    '...''...'             │
└─────────┴──────────────┴───────────────────────────────┘

Lastly you will be asked to enter a path to a file that the results can be written to (json):

? Please provide a filepath to store the output.
./output

Help

Use the help flag to get more information about how to use the CLI.

find-duplicate-strings --help

License

MIT

Keywords

FAQs

Package last updated on 24 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc