# strong-pass

> Simple javascript password checker

Latest version **0.0.4** (published 2016-03-20) · 0 weekly downloads

## Install

```sh
npm install strong-pass
pnpm add strong-pass
yarn add strong-pass
bun add strong-pass
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2016-03-20 |
| First published | 2016-03-20 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Kyrylo Shavaran |
| Maintainers | alltouch |

## Links

- npm: https://www.npmjs.com/package/strong-pass
- Repository: https://github.com/alltouch/strong-pass
- Homepage: https://github.com/alltouch/strong-pass#readme
- Issues: https://github.com/alltouch/strong-pass/issues
- npm.io page: https://npm.io/package/strong-pass

## Recent versions

- 0.0.4 (latest) — 2016-03-20
- 0.0.3 — 2016-03-20
- 0.0.1 — 2016-03-20

## README

# strong-pass
Simple javascript password checker.
It calculates password strength based on [Password Meter](http://www.passwordmeter.com/) algorithm.

## Installation

```sh
$ npm install strong-pass --save
```

## Usage

Basic example 

```javascript
let strength = StrongPass("Ifdsk6tew") //answer = 4
```

## Return values

Result value is number from 1 to 5

| value | strength    |  
|-------|-------------|
|   1   | Very weak   |
|   2   | Weak        |
|   3   | Good        |
|   4   | Strong      |
|   5   | Very Strong |

## Configuration

Minimum length for password(in progress)

```javascript
let strength = StrongPass("Ifdsk6tew", { minLength: 6 }) //answer = 4
```

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