This project is a simple password generator built using React and Vite. It allows users to generate secure passwords based on customizable criteria.
- Generate random passwords
- Customize password length
- Include or exclude specific character types (e.g., uppercase, lowercase, numbers, symbols)
- Copy generated passwords to clipboard
- Node.js (v16 or later)
- npm or yarn
- Clone the repository:
git clone https://github.com/your-username/password-generator.git
- Navigate to the project directory:
cd password-generator - Install dependencies:
npm install # or yarn install
Start the development server:
npm run dev
# or
yarn devOpen your browser and navigate to http://localhost:5173 to view the application.
To create a production build:
npm run build
# or
yarn buildThe build output will be located in the dist directory.
To preview the production build locally:
npm run preview
# or
yarn preview- React
- Vite
- JavaScript (ES6+)
- CSS
This project is licensed under the MIT License. See the LICENSE file for details.