Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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