Simple CLI Password Generator
passGen
is a simple command-line interface (CLI) tool for generating secure passwords. This tool is ideal for developers, system administrators, and anyone who needs to quickly generate strong passwords from the terminal.
- Security: Generates strong, random passwords to enhance security.
- Convenience: Quickly generate passwords directly from your terminal without needing to open a browser or another application.
- Customization: Easily adjust password length and character sets to meet your specific requirements.
- When you need to generate a password for a new user account.
- When creating passwords for services, databases, or other secure applications.
- When setting up temporary passwords that need to be strong and random.
- Anytime you need a quick and secure password without distraction.
Make sure you have Node.js installed on your computer. Clone this repository and navigate into the project directory:
git clone https://github.com/fauziralpiandi/passGen.git
or
gh repo clone fauziralpiandi/passGen
You can generate a password:
cd passGen
By default, this generates a 16-character password that includes numbers, letters, and symbols.
--length=<number>
: Specify the length of the password.--no-numbers
: Exclude numbers from the password.--no-letters
: Exclude letters from the password.--no-symbols
: Exclude symbols from the password.