PassMan is a modern, GUI-based web application that allows users to securely store and manage passwords for various applications in one centralized location.
Built with the React JavaScript library, styled using Tailwind CSS, and powered by a Node.js + Express.js + MongoDB backend, PassMan provides a clean, intuitive, and secure experience for managing sensitive credentials.
- π§ Store and manage passwords for multiple applications
- π Secure storage using MongoDB
- β‘ Backend API built with Node.js and Express.js
- π¨ Responsive UI with React + Tailwind CSS
- π¦ RESTful structure with clean code organization
| Layer | Technology |
|---|---|
| Frontend | React, Tailwind CSS |
| Backend | Node.js, Express.js |
| Database | MongoDB |
| Styling | Tailwind CSS |
git clone https://github.com/anirudh7065/Password-Manager.git
cd Password-Managercd client
npm installcd ../server
npm installCreate a .env file inside the server directory with the following contents:
MONGO_URI=your_mongodb_connection_string
PORT=5000Replace
your_mongodb_connection_stringwith your actual MongoDB connection string (e.g. from MongoDB Atlas).
Start the backend server:
npm run devOpen a new terminal and start the frontend app:
cd ../client
npm startVisit your app at: http://localhost:3000
/client # React + Tailwind frontend
/server # Node.js + Express backend
.env # Environment variables for backend
README.md # Project documentation
MIT License
Copyright (c) 2025 Abhishek
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Created by Abhishek π Portfolio: https://abhishekvalsan.vercel.app π GitHub Repository: https://github.com/anirudh7065/Password-Manager