# hebrew-names

> Random Hebrew name generator

Latest version **1.0.1** (published 2023-01-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install hebrew-names
pnpm add hebrew-names
yarn add hebrew-names
bun add hebrew-names
```

## Health

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

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2023-01-13 |
| First published | 2023-01-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.7 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Aluma Gelbard |
| Maintainers | alumag |
| Keywords | hebrew |

## Links

- npm: https://www.npmjs.com/package/hebrew-names
- Repository: https://github.com/alumag/hebrew-names-js
- Homepage: https://github.com/alumag/hebrew-names-js#readme
- Issues: https://github.com/alumag/hebrew-names-js/issues
- npm.io page: https://npm.io/package/hebrew-names

## Recent versions

- 1.0.1 (latest) — 2023-01-13
- 1.0.0 — 2023-01-13

## README

# hebrew-names

Random Hebrew name generator

## Usage

This module is available on npm:

```bash
npm install hebrew-names
```

## Usage

 * `Ethnicity` [optional]: jew, muslim, christian, druze or other

 * `Gender` [optional]: male or female

 * Generate random first names:
    ```js
    >>> const { getFirstName } = require('hebrew-names');

    >>> getFirstName('jew', 'female');
    'יעל'
    ````

* Generate random last names:
    ```js
    >>> const { getLastName } = require('hebrew-names');

    >>> getLastName('jew');
    'גלברד'
    ```

* Generate random full names:
    ```js
    >>> const { getFullName } = require('hebrew-names');

    >> getFullName('jew', 'male');
    'משה כהן'
    ```

## License

This project is released under an `MIT License`

Data in the following files are public domain (derived from Israel's Central Bureau of Statistics 1948-2021 data):

- data/jew.male.first
- data/jew.female.first
- data/jew.last
- data/muslim.male.first
- data/muslim.female.first
- data/muslim.last
- data/christian.male.first
- data/christian.female.first
- data/christian.last
- data/druze.male.first
- data/druze.female.first
- data/druze.last
- data/other.male.first
- data/other.female.first
- data/other.last

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