# ng-password-validation

> Check password strength angularjs directive

Latest version **1.0.9** (published 2021-05-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install ng-password-validation
pnpm add ng-password-validation
yarn add ng-password-validation
bun add ng-password-validation
```

## 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.9 |
| Published | 2021-05-15 |
| First published | 2018-12-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 25.8 KB |
| Known vulnerabilities | 0 (+17 in 2 direct dependencies) |
| Install scripts | no |
| Author | Punit Soni |
| Maintainers | punityo |
| Keywords | register, register form, password, password match, password strength, angular password, strong password, password strength, ng-password-validation, password compare, password-compare |

## Links

- npm: https://www.npmjs.com/package/ng-password-validation
- Repository: https://github.com/PunitSoniME/ng-password-validation
- Issues: https://github.com/PunitSoniME/ng-password-validation/issues
- npm.io page: https://npm.io/package/ng-password-validation

## Dependencies (2)

- [angular](https://npm.io/package/angular.md) ^1.7.5
- [bootstrap](https://npm.io/package/bootstrap.md) 3.3.7

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.0.9 (latest) — 2021-05-15
- 1.0.6 — 2018-12-22
- 1.0.3 — 2018-12-21
- 1.0.2 — 2018-12-21
- 1.0.1 — 2018-12-21
- 1.0.0 — 2018-12-21

## README

# Angular password directive

Directive to use in registration form for Password and Retype Password.

# How to install
    npm i ng-password-validation --save

# Path
    <script src="./node_modules/ng-password-validation/ng-password-validation.js" ></script>

# How to use
    js - angular.module("my-app", ['ng-password-validation']);
    html - <password ng-model="password"></password>

# Dependencies
    bootstrap > 3.0.0 and bootstrap < 5.0.0
    angularjs > 1.x.x

# Required fields
    ng-model
    
# Other properties

| Property | Description / Value | Required |
| -------- | ----- | -------- |
| ng-model | Your-model-name | Yes |
| form-type | form-horizontal / basic / form-inline | No |
| is-required | true / false | No |
| password-label | Label to display for password field | No |
| password-placeholder | Label to set placeholder for password field | No |
| retype-password-label | Label to display for retype password field | No |
| retype-password-placeholder | Label to set placeholder for retype password field | No |
| min-password-length | Number ( for example: 5 ) | No |
| max-password-length | Number ( for example: 15 ) | No |
| allow-uppercase | true / false | No |
| allow-lowercase | true / false | No |
| allow-digit | true / false | No |
| allow-special-character | true / false | No |
| special-characters | Set your own specialcharacter RegEx if you want to override default special characters ( for example: specialCharactersPattern = new RegExp("[@]"); | No |
| view-password | true / false ( Enable view password functionality ) | No |
| is-password-valid | Your model ( In this property, you will get either password is valid or not ) | Yes |
| show-feedback ( coming soon ) | true / false | No |
| show-feedback-with-icon ( coming soon ) | true / false | No |

# Example
    <password 
        ng-model="vm.password" 
        form-type="form-horizontal" 
        
        is-required = "false"
        
        password-label = "Password"
        password-placeholder = "Password"

        retype-password-label = "Retype Password"
        retype-password-placeholder = "Retype Password"

        max-password-length = "12"

        allow-uppercase = "true"
        allow-lowercase = "true"
        allow-digit = "true"
        allow-special-character = "true"

        view-password = "true"
        is-password-valid = "vm.isPasswordValid">
    </password>


# Check above example here
### https://punitsonime.gitlab.io/ng-password-validation

# Note:
    Use this directive in between <form></form> tag

# How to test this directive
 Install browser-sync globally to run local server
 
    - npm i browser-sync -g
    - Now run "npm start" command after installing ng-password-validation package.

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