# @thomaschaplin/random-name

> Random name generator

Latest version **1.0.2** (published 2019-09-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @thomaschaplin/random-name
pnpm add @thomaschaplin/random-name
yarn add @thomaschaplin/random-name
bun add @thomaschaplin/random-name
```

## 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.2 |
| Published | 2019-09-07 |
| First published | 2019-09-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.9 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Thomas Chaplin |
| Maintainers | thomaschaplin |
| Keywords | random, name, random name, random-name, thomaschaplin |

## Links

- npm: https://www.npmjs.com/package/@thomaschaplin/random-name
- Repository: https://github.com/thomaschaplin/random-name
- Homepage: https://github.com/thomaschaplin/random-name#readme
- Issues: https://github.com/thomaschaplin/random-name/issues
- npm.io page: https://npm.io/package/@thomaschaplin/random-name

## Alternatives

- [base64url](https://npm.io/package/base64url.md) — 6.1M weekly downloads
- [get-installed-path](https://npm.io/package/get-installed-path.md) — 502.9K weekly downloads
- [@uppy/url](https://npm.io/package/@uppy/url.md) — 185.8K weekly downloads
- [@d3fc/d3fc-shape](https://npm.io/package/@d3fc/d3fc-shape.md) — 16.2K weekly downloads
- [localizer](https://npm.io/package/localizer.md) — 226 weekly downloads

## Recent versions

- 1.0.2 (latest) — 2019-09-07
- 1.0.1 — 2019-09-07
- 1.0.0 — 2019-09-07

## README

# random-name

![npm (scoped)](https://img.shields.io/npm/v/@thomaschaplin/random-name)
[![GitHub issues](https://img.shields.io/github/issues/thomaschaplin/random-name)](https://github.com/thomaschaplin/random-name/issues)
[![GitHub forks](https://img.shields.io/github/forks/thomaschaplin/random-name)](https://github.com/thomaschaplin/random-name/network)
[![GitHub stars](https://img.shields.io/github/stars/thomaschaplin/random-name)](https://github.com/thomaschaplin/random-name/stargazers)
[![GitHub license](https://img.shields.io/github/license/thomaschaplin/random-name)](https://github.com/thomaschaplin/random-name/blob/master/LICENSE)

Generate a random name from a list of over 277,000 names

## Install

`npm i @thomaschaplin/random-name`

## Usage

### ES5

```js
const randomName = require('@thomaschaplin/random-name')

console.log(randomName.randomFirstName()) // thomas
console.log(randomName.randomLastName()) // chaplin
console.log(randomName.randomFullName()) // thomas chaplin
```

or

```js
const { randomFirstName, randomLastName, randomFullName } = require('@thomaschaplin/random-name')

console.log(randomFirstName()) // thomas
console.log(randomLastName()) // chaplin
console.log(randomFullName()) // thomas chaplin
```

### ES6

```js
import { randomFirstName, randomLastName, randomFullName } from '@thomaschaplin/random-name')

console.log(randomFirstName()) // thomas
console.log(randomLastName()) // chaplin
console.log(randomFullName()) // thomas chaplin
```

## License 

[MIT](./LICENSE)

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