{"id":28936336,"url":"https://github.com/codzhorizon/password-manager-app2","last_synced_at":"2026-04-14T14:33:51.464Z","repository":{"id":298527342,"uuid":"1000267788","full_name":"CodzHorizon/Password-Manager-App2","owner":"CodzHorizon","description":"Password Manager app made using React ,  Vite , express.js , Tailwind CSS and MongoDb ","archived":false,"fork":false,"pushed_at":"2025-06-12T15:57:43.000Z","size":63,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-22T20:09:00.639Z","etag":null,"topics":["educational-project","express-js","javascript","mongodb","password-manager","react","responsive-ui","tailwindcss","vite","webdev"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CodzHorizon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-11T14:12:48.000Z","updated_at":"2025-06-12T15:57:47.000Z","dependencies_parsed_at":"2025-06-11T16:14:49.838Z","dependency_job_id":"e5ea3e53-efc2-4c25-806a-6a66609b516f","html_url":"https://github.com/CodzHorizon/Password-Manager-App2","commit_stats":null,"previous_names":["codzhorizon/password-manager-app2"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CodzHorizon/Password-Manager-App2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodzHorizon%2FPassword-Manager-App2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodzHorizon%2FPassword-Manager-App2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodzHorizon%2FPassword-Manager-App2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodzHorizon%2FPassword-Manager-App2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodzHorizon","download_url":"https://codeload.github.com/CodzHorizon/Password-Manager-App2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodzHorizon%2FPassword-Manager-App2/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266510659,"owners_count":23940690,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["educational-project","express-js","javascript","mongodb","password-manager","react","responsive-ui","tailwindcss","vite","webdev"],"created_at":"2025-06-22T20:08:37.216Z","updated_at":"2026-04-14T14:33:51.427Z","avatar_url":"https://github.com/CodzHorizon.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PassVault - Password Manager\n\nPassVault is a responsive and modern password manager built with **React.js**, **Vite**, **Tailwind CSS**, **Express.js** and **MongoDb**. It allows users to securely store, edit, and delete their passwords with a clean and intuitive interface.\n\n# ScreenShots\n![image](https://github.com/user-attachments/assets/ee52a5a4-5df8-4f14-a828-0ffbfa393aff)\n\n## Mobile View\n\n![image](https://github.com/user-attachments/assets/c625ae48-04c8-4196-848f-1e81346065e8)\n\n## Features\n\n- **Add Passwords:** Save website credentials (site, username/email, password) securely.\n- **Edit Passwords:** Update existing credentials easily.\n- **Delete Passwords:** Remove credentials you no longer need.\n- **Copy to Clipboard:** Instantly copy site, username, or password with a single click.\n- **Show/Hide Password:** Toggle password visibility for convenience.\n- **Persistent Storage:** All data is stored on Backend using Express.js and MongoDb.\n- **Responsive Design:** Optimized for all screen sizes, from mobile to desktop.\n- **Modern UI:** Built with Tailwind CSS for a sleek and user-friendly experience.\n- **Notifications:** Get instant feedback for actions like save, delete, and copy using [react-toastify](https://fkhadra.github.io/react-toastify/introduction/).\n\n## How It Works\n\n1. **Frontend:**  \n   The React frontend provides a form to add new passwords and displays all saved credentials in a table. Each entry can be copied, edited, or deleted. Passwords are masked for security.\n\n2. **Backend:**  \n   The Express.js backend exposes three main endpoints:\n   - `GET /` — Fetch all saved passwords.\n   - `POST /` — Add a new password.\n   - `DELETE /` — Delete a password by its ID.\n\n   The backend uses MongoDB to persist all password data.\n\n3. **Clipboard Copy:**  \n   Click the copy icon next to any field to copy its value to your clipboard, with a toast notification for feedback.\n\n4. **Password Visibility:**  \n   Click the eye icon to toggle password visibility when entering a new password.\n\n## Getting Started\n\n### Prerequisites-\n\n- Node.js and npm\n- MongoDB running locally or a MongoDB Atlas connection\n\n### Setup-\n\n#### Backend\n\n1. Navigate to the `Backend` directory:\n   cd Backend\n\n2. Install dependencies:\n   npm install\n\n3. Configure your .env file (already present):\n   MONGO_URI=mongodb://localhost:27017\n   DB_NAME=PassVault\n   \n5. Start the backend server:\n   node --watch server.js\n\n#### Frontend\n\n1. Clone \u0026 Navigate to the project root:\n  cd..\n\n2. Install dependencies:\n  npm install\n\n3. Start the deveploment server:\n  npm run dev\n\n## 👨‍💻 Author\n  \nGitHub: [@CodzHorizon](https://github.com/CodzHorizon)\n\n---\n\n## ©️ Copyright\n\n© 2025 CodzHorizon. All rights reserved.\n\nThis project is intended for educational and personal use only.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodzhorizon%2Fpassword-manager-app2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodzhorizon%2Fpassword-manager-app2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodzhorizon%2Fpassword-manager-app2/lists"}