# rdpass

> 自动密码生成器

Latest version **1.1.0** (published 2018-05-30) · ISC license · 0 weekly downloads

## Install

```sh
npm install rdpass
pnpm add rdpass
yarn add rdpass
bun add rdpass
```

Provides the command `rdPass`.

## 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.0 |
| Published | 2018-05-30 |
| First published | 2018-05-24 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | ding.chao |
| Maintainers | ding651354666 |

## Links

- npm: https://www.npmjs.com/package/rdpass
- npm.io page: https://npm.io/package/rdpass

## Recent versions

- 1.1.0 (latest) — 2018-05-30
- 1.0.0 — 2018-05-24

## README

# 自动代码生成器!

这个模块用于选择困难症患者自动生成密码或者脚本里面自动生成密码


# 安装

npm install rdPass --save



# 使用

import rdPass from 'rdPass';

## 默认用法

	自动生成难度为3（包含数字和大小写字母），长度为6的密码
rdPass

	比如生成了W0T8zL
## 自定义难度
		
	通过第一个参数自定义难度（一共5种难度，输入的数字会对5取余，默认为3）

rdPass 4

	比如生成了QNOQ/8
## 自定义长度

	第二个参数会作为密码的长度（长度无限制，此时不可省略第一个参数，默认为6）
rdPass 4 12

	比如生成了zO9YC+YDU4Rn


# 参数说明

## 第一个参数为难度参数

一共提供了5种难度，输入的数字会对5取余，所以可以输入任意正整数。其中0对应着最高难度5。难度解释：
|难度|包含的字符|
|--|--|
| 难度1 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 |
| 难度2 | 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' |
| 难度3 | 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' |
| 难度4 | ',', '.', '_', '-', '=', '+', '/', '*' |
| 难度5 | '"', "'", '[', ']', '{', '}', '|', '!', '@', '#', '$', '%', '^', '&', '(', ')' |
每一级难度会包含本级别以及低于本级别的所有字符。

## 长度说明

第二个参数为密码长度。长度没有限制，会对输入的值取整取绝对值。在有第二个参数的情况下不能省略第一个参数。

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