@fsd24229/password-utilities
v2.0.0
Published
A small package that generates a string password and additionally offers a check whether a password is strong or not
Readme
@fsd24229/password-utilities
By Felix Dilly & Leonardo Barrinetos
Small NPM-Lib that provides a quick check, to verify the strength of a password.
Installation
npm install @fsd24229/password-utilitiesor
yarn add @fsd24229/password-utilitiesUsage
Basic Usage
import {generatePassword, isPasswordStrong} from '@fsd24229/password-utilities';
const newPassword = generatePassword(12);
const isStrong = isPasswordStrong(newPassword);
console.log(`New password:`, newPassword);
console.log(`The password is strong:`, isStrong);Contribution
Contribution are welcome! Please refer to CONTRIBUTING.md for more details.
Security
Please refer to our SECURITY.md for information about security policies, how to report vulnerabilities and our approach to handling concerns.
License
This project is licensed under the MIT License.
