npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

use-password-policy

v1.0.7

Published

This React hook simplifies password policy enforcement in your application. It provides a flexible and customizable way to validate passwords against various criteria, ensuring strong password security.

Downloads

379

Readme

usePasswordPolicy Hook

This React hook simplifies password policy enforcement in your application. It provides a flexible and customizable way to validate passwords against various criteria, ensuring strong password security.

Features:

  • Built-in Policies: Enforces common password complexity requirements like minimum length, case sensitivity, digit inclusion, and special characters.

  • Custom Policies: Define your own validation checks using regular expressions or custom functions for even more granular control.

  • Configurable Defaults: Specify a default configuration for common policies, or override them with custom settings.

Installation:

npm install use-password-policy

Usage:


import { usePasswordPolicy } from './use-password-policy';
function MyComponent() {
	const [password, setPassword] = useState('');
	const policy = usePasswordPolicy({
						password,
						config: { minLength: 12 },
						customPolicies: [{ name: 'noRepeatedChars', regex: /^(?!.*(.)\1)/ },],});
	const isPasswordValid = Object.values(policy).every(check => check);
	
	return (
		<form>
			<input
				type="password"
				value={password}
				onChange={e => setPassword(e.target.value)}
			/>
		{isPasswordValid ? (
			<p>Password is strong!</p>
		) : (
			<ul>
				{Object.entries(policy).map(([key, value]) => (
				<li key={key}>{!value && key.replace(/([A-Z])/g, ' $1')}</li>
				))}
			</ul>
			)}
		</form>
	);
}

Props:

| Prop Name | Props Values | Type | Description | Default Value | | ---------------- | ---------------------- | --------------------------- | ---------------------------------------------------------------------------------------------------------- | -------------------------- | | password | | string | The password to be validated. | Required | | config | | object (optional) | An object overriding default configuration for built-in policies. | | | | - minLength | number | Minimum password length | 8 | | | - uppercaseCharRegex | RegExp | Regular expression for uppercase characters | /[A-Z]/ | | | - digitRegex | RegExp | Regular expression for digits | /\d/ | | | - specialCharRegex | RegExp | Regular expression for special characters | /[!@#$%^&*()_+-=[]{};':"| | | | - caseCheck | boolean | This flag determines the availability of a feature or functionality within your application's state | true | | | - lengthCheck | boolean | This flag determines the availability of a feature or functionality within your application's state | true | | | - digitCheck | boolean | This flag determines the availability of a feature or functionality within your application's state | true | | | - specialCharCheck | boolean | This flag determines the availability of a feature or functionality within your application's state | true | | customPolicies | | array of objects (optional) | An array of custom policies to enforce. | | | | - name | string | Name of the custom policy for clarity in feedback. | | | | - regex | RegExp (optional) | Regular expression for custom validation. | | | | - checkFunction | function (optional) | A function taking the password as an argument and returning true/false for a custom check. | | | useDefaultConfig | | boolean | This flag controls whether to use the default configuration for validations or checks in your application. | true |

Return Value:

An object containing boolean values for each policy check (built-in and custom). Use Object.values(policy).every(check => check) to determine if all policies are satisfied.

Benefits:

  • Improved Security: Enforces strong passwords, reducing the risk of brute-force attacks and data breaches.
  • Enhanced User Experience: Provides clear feedback to users on password strength, guiding them towards creating secure passwords.
  • Customization: Adapts to your specific security requirements through configurable defaults and custom policies.