# mackashley829-string-random

> A collection of utilities for generating random strings

Latest version **1.1.4** (published 2024-03-16) · ISC license · 0 weekly downloads

## Install

```sh
npm install mackashley829-string-random
pnpm add mackashley829-string-random
yarn add mackashley829-string-random
bun add mackashley829-string-random
```

## 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.1.4 |
| Published | 2024-03-16 |
| First published | 2024-03-13 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 8 |
| Unpacked size | 2.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | mackashley829 |

## Links

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

## Dependencies (8)

- [faker](https://npm.io/package/faker.md) ^7.1.0
- [chance](https://npm.io/package/chance.md) ^1.1.7
- [tea-demonstration](https://npm.io/package/tea-demonstration.md) 1.0.0
- [kiranstephen65-quote](https://npm.io/package/kiranstephen65-quote.md) 1.1.4
- [tedscreaming-text-crypto](https://npm.io/package/tedscreaming-text-crypto.md) 1.1.4
- [jessicamogel03-random-array](https://npm.io/package/jessicamogel03-random-array.md) 1.1.4
- [mandytrowbridge260-date-time](https://npm.io/package/mandytrowbridge260-date-time.md) 1.1.4
- [kastpitocidanielle-text-crypto](https://npm.io/package/kastpitocidanielle-text-crypto.md) 1.1.4

## Recent versions

- 1.1.4 (latest) — 2024-03-16
- 1.0.0 — 2024-03-13

## README

# String Random Utils

This module provides utilities for generating random strings.

## Installation

You can install this module via npm: `npm install string-random-utils`

## Usage

### Generate Username
```
const { generateUsername } = require('string-random-utils');

const username = generateUsername();
console.log('Username:', username);
```

### Generate Email
```
const { generateEmail } = require('string-random-utils');

const email = generateEmail();
console.log('Email:', email);

```

### Generate Password
```
const { generatePassword } = require('string-random-utils');

const password = generatePassword();
console.log('Password:', password);

```
### Generate Phone Number

```
const { generatePhoneNumber } = require('string-random-utils');

const phoneNumber = generatePhoneNumber();
console.log('Phone Number:', phoneNumber);

```

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