Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devdhera/acronym
A npm module to generate acronyms
https://github.com/devdhera/acronym
acronym npm
Last synced: 13 days ago
JSON representation
A npm module to generate acronyms
- Host: GitHub
- URL: https://github.com/devdhera/acronym
- Owner: DevDHera
- License: mit
- Created: 2019-01-04T14:42:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-10T06:38:27.000Z (almost 6 years ago)
- Last Synced: 2024-11-18T11:25:28.324Z (about 1 month ago)
- Topics: acronym, npm
- Language: JavaScript
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @devdhera/acronym
Simple Acronym generator for all the node lovers :heart:.
## How to Install
Simply run the following in the terminal.
```sh
npm i @devdhera/acronym
```## How to Use
```js
const acronym = require('@devdhera/acronym');acronym('for your information', (err, resp) => {
if (err) {
console.log(err);
}console.log(resp);
});
```