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

https://github.com/dashpilot/meaningful-slug-generator

NPM module that generates meaningful and easy-to-remember strings, in the form of {adjective}-{noun}-{number}
https://github.com/dashpilot/meaningful-slug-generator

Last synced: 23 days ago
JSON representation

NPM module that generates meaningful and easy-to-remember strings, in the form of {adjective}-{noun}-{number}

Awesome Lists containing this project

README

          

# meaningful-slug-generator
NPM module that generates meaningful and easy-to-remember strings, in the form of {adjective}-{noun}-{number}. Inspired by Netlify's random subdomains.

## Installation
```
npm i @dashpilot/meaningful-slug-generator
```

## Usage

```javascript
const slug = require('@dashpilot/meaningful-slug-generator')
console.log(slug);
// outputs: tremendous-advice-457
```