Latest Threat ResearchGlassWorm Loader Hits Open VSX via Developer Account Compromise.Details
Socket
Book a DemoInstallSign in
Socket

pass-score

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pass-score

Get the score of your password

Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
122
45.24%
Maintainers
1
Weekly downloads
 
Created
Source

GitHub release GitHub issues GitHub last commit Github file size Build Status npm npm Analytics

Pass Score

Get the score of your password as a number.

The number can be between 0 and the length of the provided array containing the conditions against which the password will be tested.

Install

npm i pass-score

or

yarn add pass-score

or

just download this repository and link the files located in dist folder

or include it from unpkg.com

<script src="https://unpkg.com/pass-score"></script>

Usage

With default conditions:

import passScore from 'pass-score';

// Returns a number between 0 and 4
const score = passScore('Your-passW0rd-Str1ng');

With custom conditions

import passScore from 'pass-score';

// Returns a number between 0 and 2
const score = passScore('Your-passW0rd-Str1ng', [
  /[\W_,!?@*\(\)]/, // Special characters
  /^.{8}/ // At least 8 characters
]);

Arguments

The function accepts two arguments:

  • The first is the password string. It is required.
  • The second is an array of regular expressions. It is optional. The default array is shown below.

Conditions

The predefined array with conditions contains the following:

  • /\d/ - The password should contain at least on digit
  • /[A-Z]/, - The password should contain at least one uppercase letter
  • /[\W_,!?@*\(\)]/ - The password should contain at least one special character
  • /^.{8}/ - The password should be at least 8 characters long

Bonus

The pass-score module provides a native web component. In order to use it you can import it:

import 'pass-score/component';

and then use it as shown in the demo.

The component accepts two attributes: styled: a boolean attribute which injects an opinionated style in the component. patterns: a comma separated list of regular expressions against which the password will be matched.

LICENSE

MIT

Keywords

Password

FAQs

Package last updated on 05 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts