An open API service indexing awesome lists of open source software.

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.

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
```