Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apetrovya/my-title-normalizer
A simple CLI utility to normalize the titles for my local files built in nodeJS
https://github.com/apetrovya/my-title-normalizer
Last synced: about 8 hours ago
JSON representation
A simple CLI utility to normalize the titles for my local files built in nodeJS
- Host: GitHub
- URL: https://github.com/apetrovya/my-title-normalizer
- Owner: apetrovYa
- Created: 2020-06-08T19:45:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T20:34:58.000Z (almost 2 years ago)
- Last Synced: 2024-01-16T00:50:15.155Z (10 months ago)
- Language: JavaScript
- Size: 177 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Title Normalizer
My Title Normalizer is a minimalistic CLI application that helps
me to normalize the titles of the files on my local laptop.## How to install
1. Clone ths repo `git clone [email protected]:apetrovYa/my-title-normalizer.git`;
2. From the repository folder, execute the following command to install via npm:
`npm install -g`;
3. At this stage, just invoke the CLI: `my-title-normalizer "Hello World"`.## How it works
The script expects a string in input. The output will be possibly
a string like the following: aaaaa-bbbbb-ccccc-dddd.
Where {a,b,c,d} are arbitrary sequences of chars.
In between the script transforms an input into output.## Why this tool
The main motivation: explore minimalistically Javascript.