https://github.com/techtronixx/passwordgenerator
A simple password generator written in JavaScript.
https://github.com/techtronixx/passwordgenerator
css html javascript
Last synced: 11 months ago
JSON representation
A simple password generator written in JavaScript.
- Host: GitHub
- URL: https://github.com/techtronixx/passwordgenerator
- Owner: TechTronixx
- License: apache-2.0
- Created: 2021-06-20T10:59:45.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-09T18:20:50.000Z (over 1 year ago)
- Last Synced: 2025-04-05T15:35:21.167Z (about 1 year ago)
- Topics: css, html, javascript
- Language: JavaScript
- Homepage: https://password-generatorx.vercel.app
- Size: 281 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Password Generator
A simple password generator written in JavaScript.
This project is a simple password generator written in JavaScript. The goal is to generate 3 random passwords of 12 characters each. The user can choose to include numbers, letters (upper- and lowercase), and symbols in the generated passwords. There is also an option to remove ambiguous characters from the generated passwords.
## Site Demo
Demo - [Link](https://password-generatorx.vercel.app/)
## How it Works
The password generator uses JavaScript functions to create random, secure passwords. The default password length is set to 12 characters, but the user has the option to change this to any desired length.
When the user opens the password generator, three sets of randomly generated passwords are displayed. These passwords are created using a combination of numbers, symbols, and letters that are added to a "charpool" based on the user's preferences. The user can choose to include or exclude ambiguous characters, such as the letter "l" and the number "1", in the charpool.
Once the charpool is determined, the password generator uses it to create the desired number of random passwords. The user can then select one of the generated passwords as their new password.
Additionally, the user has the option to include or exclude repetitive characters in the generated passwords. This can be useful for creating passwords that are easy to remember, but still secure.
Overall, the password generator offers a simple and convenient way for users to create strong, random passwords.
## Preview

## License
This project is free to use and edit.