encoding-checker
Version:
🔨 Tool to investigate files with different encoding than passed
75 lines (53 loc) • 2.15 kB
Markdown
# encoding-checker
[](#cli)
[](https://www.npmjs.com/package/encoding-checker)
[](https://badge.fury.io/js/encoding-checker)
[](https://www.npmjs.com/package/encoding-checker)
[](https://packagephobia.com/result?p=encoding-checker)
[](https://piecioshka.mit-license.org)
[](https://github.com/piecioshka/encoding-checker/actions/workflows/testing.yml)
🔨 Tool to investigate files with different encoding than passed
## Usage
Installation:
```bash
npm install -g encoding-checker
```
```text
Usage: encoding-checker [-p pattern] [-i encoding] [-v]
Options:
--help Show help [boolean]
--version Show version number [boolean]
--pattern, -p, -d [default: "*"]
--ignore-encoding, -i [default: ""]
--verbose, -v [default: false]
```
## Examples
### ➡️ Use case: All files in the current directory
```bash
> encoding-checker
[ascii] .gitignore
[ascii] index.js
[ascii] package-lock.json
[ascii] package.json
[ascii] README.md
[ascii] wallaby.js
```
### ➡️ Use case: All *.md files in current directory
```bash
encoding-checker -p "*.md"
```
### ➡️ Use case: Recursive directory
```bash
encoding-checker -p "**"
encoding-checker -p "../**"
```
### ➡️ Use case: Ignore all files with encoding "ascii"
```bash
encoding-checker -i "ascii"
```
### ➡️ Use case: Append number of results
```bash
encoding-checker -v
```
## License
[The MIT License](https://piecioshka.mit-license.org) @ 2015