Projects with this topic
-
Web development documentation, including Drupal and NextJS, featuring guides, scaffolding files, code snippets and more.
UpdatedUpdated -
-
Unique Password Generator
This is a web application for generating unique passwords based on user-defined parameters. Users can specify password length and choose which character sets to include: numbers (0-9), lowercase letters (a-z), and uppercase letters (A-Z).
The application ensures that:
Each password is unique and non-repeating.
Characters within a password do not repeat.
If multiple character sets are selected, at least one character from each set is included in the password.
Technologies used in this project:
Laravel (PHP 8) for backend logic, API endpoints, and password generation.
Next.js (React + TypeScript) for the frontend interface.
Nginx as the web server.
Docker for containerized development and deployment.
The frontend communicates with the Laravel backend API to generate passwords. The project is designed so that it can also run as a Laravel-only application if desired.
This setup allows for easy development, secure password generation, and a modern reactive UI.
Updated