https://github.com/skvggor/easy-rename
Prettifier for filenames.
https://github.com/skvggor/easy-rename
diacritics filename hacktoberfest nodejs prettifier rename
Last synced: 2 months ago
JSON representation
Prettifier for filenames.
- Host: GitHub
- URL: https://github.com/skvggor/easy-rename
- Owner: skvggor
- License: mit
- Created: 2016-01-22T20:59:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-07T17:47:44.000Z (about 9 years ago)
- Last Synced: 2025-03-29T04:48:56.329Z (3 months ago)
- Topics: diacritics, filename, hacktoberfest, nodejs, prettifier, rename
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/easy-rename
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Easy Rename
Prettifier for filenames.
## Module
### Usage
```
$ npm i easy-rename
``````js
const easyRename = require('easy-rename');easyRename('BaD FileName (1) (1) (1).clj');
// => 'bad_filename_1_1_1.clj'
```## CLI
### Usage
```
$ npm i -g easy-rename
``````bash
$ easy-rename BaD\ FileName\ \(1\)\ \(1\)\ \(1\).clj
# => bad_filename_1_1_1.clj$ easy-rename "BaD FileName (1) (1) (1).clj"
# => bad_filename_1_1_1.clj
```