https://github.com/mwcz/acron
Generate acronyms based on the 10,000 most common English words.
https://github.com/mwcz/acron
Last synced: 3 months ago
JSON representation
Generate acronyms based on the 10,000 most common English words.
- Host: GitHub
- URL: https://github.com/mwcz/acron
- Owner: mwcz
- License: mit
- Created: 2018-10-02T16:46:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-01T18:06:04.000Z (about 4 years ago)
- Last Synced: 2025-03-17T17:09:27.843Z (3 months ago)
- Language: JavaScript
- Size: 38.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# acron
Generate acronyms based on the 10,000 most common English words.
## CLI Usage
```
npm i -g acron
acron lgtm
```Result:
```
Lions Gobble Tiny Mouse
```## Module Usage
```js
const acron = require("acron");
acron("lgtm");
```Result:
```js
[ 'lions', 'gobble', 'tiny', 'mouse' ]
```