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}
- Host: GitHub
- URL: https://github.com/dashpilot/meaningful-slug-generator
- Owner: dashpilot
- Created: 2020-02-02T02:22:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-02T02:41:06.000Z (over 6 years ago)
- Last Synced: 2025-10-04T23:20:41.818Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```