Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akaizn-junior/randi
Random Names Generator
https://github.com/akaizn-junior/randi
generator names random
Last synced: 10 days ago
JSON representation
Random Names Generator
- Host: GitHub
- URL: https://github.com/akaizn-junior/randi
- Owner: akaizn-junior
- License: isc
- Created: 2019-10-29T04:35:50.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T11:13:48.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T01:33:53.008Z (over 1 year ago)
- Topics: generator, names, random
- Language: JavaScript
- Size: 485 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Randi
## Random Names Generator
Uses a list of nouns and adjectives to create a random name.
## Description
Random Names can be used as placeholder names or actual names for content.
The data creates interesting names by simply smooshing random nouns and adjectives together.
Any offensive or inapropriate combinations are not intentional and may be removed.## Install
```npm i @verdebydesign/randi```
## Usage
### Browser
```js
const randomName = randi('_');
// ex: a_random_name```
### CommonJS
```js
const randi = require('randi');
const randomTitle = randi('-');// ex: a-random-title
```### CLI
```shell
randi --sep '-'
# ex: title-random
```## CLI Options
### Synopsis
randi [-h] [-s=separator]
### Quick use
```shell
randi
# ex: random name
```|Options||
|--|--|
| -s, --sep| Provide a separator for the generated string other than space|
| -h, --help| Show help |## Shout outs
To the creator of this Gist were most of the data is from
## License
ISC License [ISC](https://opensource.org/licenses/ISC)
## Author
© 2019 Verdexdesign