Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mwcz/acron
Generate acronyms based on the 10,000 most common English words.
https://github.com/mwcz/acron
Last synced: 12 days 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 (over 3 years ago)
- Last Synced: 2025-01-22T23:44:11.967Z (17 days ago)
- Language: JavaScript
- Size: 38.1 KB
- Stars: 1
- Watchers: 3
- 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' ]
```