Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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