# password-generator-random

> This package will help you to generate random password with and without salt

Latest version **1.0.0** (published 2020-04-13) · ISC license · 0 weekly downloads

## Install

```sh
npm install password-generator-random
pnpm add password-generator-random
yarn add password-generator-random
bun add password-generator-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.0.0 |
| Published | 2020-04-13 |
| First published | 2020-04-13 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Narendra Solanki |
| Maintainers | ndsnarne |
| Keywords | password-generator-random, password, random password, random password generator, passowrd generator |

## Links

- npm: https://www.npmjs.com/package/password-generator-random
- npm.io page: https://npm.io/package/password-generator-random

## Recent versions

- 1.0.0 (latest) — 2020-04-13

## README

# password-generator-random



This module will help you to generate random password with fully customization string

### Installation

password-generator-random requires [Node.js](https://nodejs.org/) v4+ to run.

Install the dependencies and devDependencies and start the server.

```sh
$ npm install password-generator-random
```

### How to use it...

```sh
let generatePassword = require('password-generator-random');
```

For normal password with 8 character you no need to pass any arguments it will by default generate 8 character long with all the possible character which one strong password need

### Example without parameters
```sh
generatePassword() = @q)hJ{dm
```
This will return 8 character long password

Now let's see one exmple with specific length

### Example with only length
```sh
generatePassword(15) = Fuv0)`yO}t"yk/{
```
This will return 15 character long password

Now let't see one example with specific length and specific character for password

### Example with length and any character
```sh
generatePassword(15,'custom') = utotcommsusuut
```
This will return 15 character long password with combination only which is possible in given string

License
----

MIT

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