# random-fullName

> Generate a random full name.

Latest version **1.0.0** (published 2016-11-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install random-fullName
pnpm add random-fullName
yarn add random-fullName
bun add random-fullName
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2016-11-12 |
| First published | 2016-11-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | bubkoo |
| Maintainers | bubkoo |
| Keywords | fullName, firstName, lastName, name, person, random, randomly, randomize, chance, test, dice, mock |

## Links

- npm: https://www.npmjs.com/package/random-fullName
- Repository: https://github.com/mock-end/random-fullName
- Homepage: https://github.com/mock-end/random-fullName#readme
- Issues: https://github.com/mock-end/random-fullName/issues
- npm.io page: https://npm.io/package/random-fullName

## Dependencies (2)

- [random-lastname](https://npm.io/package/random-lastname.md) ^1.0.1
- [random-firstname](https://npm.io/package/random-firstname.md) ^1.0.1

## Alternatives

- [duck](https://npm.io/package/duck.md) — 4.2M weekly downloads
- [ava](https://npm.io/package/ava.md) — 560.2K weekly downloads
- [storybook-addon-module-mock](https://npm.io/package/storybook-addon-module-mock.md) — 71.7K weekly downloads
- [vest](https://npm.io/package/vest.md) — 50.1K weekly downloads
- [@ethereum-waffle/mock-contract](https://npm.io/package/@ethereum-waffle/mock-contract.md) — 40.0K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2016-11-12
- 1.0.1 — 2016-11-12

## README

# random-fullName

> Generate a random full name.

[![MIT License](https://img.shields.io/badge/license-MIT_License-green.svg?style=flat-square)](https://github.com/mock-end/random-fullName/blob/master/LICENSE)

[![build:?](https://img.shields.io/travis/mock-end/random-fullName/master.svg?style=flat-square)](https://travis-ci.org/mock-end/random-fullName)
[![coverage:?](https://img.shields.io/coveralls/mock-end/random-fullName/master.svg?style=flat-square)](https://coveralls.io/github/mock-end/random-fullName)


## Install

```
$ npm install --save random-fullName 
```

## Usage

```js
var randomFullName = require('random-fullName');

// API
// - randomFullName([options]);

// options
// - gender
// - middleName

randomFullName();
// => 'Dafi Vatemi'
```

Optionally include the middle name:

```js
randomFullName({middleName: true});
// => 'Nelgatwu Powuku Heup'

randomFullName({middleName: 'Suosat'});
// => 'Doctor Suosat Am'
```

Optionally specify the gender:

```js
randomFullName({gender: 'male', middleName: true });
// => 'Ezme Dafi Iza'
```

## Related

- [random-firstName](https://github.com/mock-end/random-firstName) - Generate a random first name. 
- [random-lastName](https://github.com/mock-end/random-lastName) - Generate a random last name. 
- [random-age](https://github.com/mock-end/random-age) - Generate a random age. 
- [random-birthday](https://github.com/mock-end/random-birthday) - Generate a random birthday. 

## Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please [create an issue](https://github.com/mock-end/random-fullName/issues/new).

---
_Source: https://npm.io/package/random-fullName · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
