https://github.com/piecioshka/encoding-checker
🛠 Tool to investigate files with different encoding than passed.
https://github.com/piecioshka/encoding-checker
Last synced: 8 months ago
JSON representation
🛠 Tool to investigate files with different encoding than passed.
- Host: GitHub
- URL: https://github.com/piecioshka/encoding-checker
- Owner: piecioshka
- License: mit
- Created: 2015-03-12T01:05:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-11-17T12:23:04.000Z (8 months ago)
- Last Synced: 2024-11-24T20:43:40.703Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 167 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# encoding-checker
[](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
## Install
```bash
npm install -g encoding-checker
```## Usage
```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