A client-side password generator built with JavaScript and bundled using Webpack.
The project focuses on generating configurable, random passwords directly in the browser, with all logic handled on the client side. It explores modular JavaScript structure, build tooling, and basic UI interaction without relying on external services.
Password generation logic is separated into reusable modules, while form handling and DOM interaction are kept isolated for clarity and maintainability. Assets are bundled with Webpack to produce a single optimized output for the browser.
The interface is intentionally simple and lightweight, with styling handled via plain CSS.
The application is available online at: https://jcp-nu.vercel.app/
Clone the repository and install dependencies:
git clone https://github.com/geovannewashington/jcp.git
cd jcp
npm installBuild the project:
npm run buildThen open public/index.html in a modern browser.
This project servers as a small example of client-side tooling, modulear JavaScript, and basic build configuration using Webpack.