Welcome to the Password Validator project! This project helps you check if a password meets strong security criteria. It verifies if your password includes uppercase letters, lowercase letters, numbers, and special characters.
To clone this project to your local machine, run the following command in your terminal:
git clone https://github.com/pedadasaikrishna/passwordvalidator.gitAfter cloning the repo, navigate to the project folder and install the dependencies with:
cd passwordvalidator
npm installStart the development server with:
npm startThis will open the app in your browser at http://localhost:3000.
You can test the password validation by typing a password into the input field and checking if it meets the following criteria:
- At least 8 characters
- At least one lowercase letter
- At least one uppercase letter
- At least one number
- At least one special character
Password123!✔️Strong@2024✔️weakpassword❌123456❌abcD@123✔️
If you encounter any issues or have suggestions for improvements, feel free to open an issue or contribute to the project! I appreciate your support.
Thank you for visiting my project! 🙏