A simple and secure password manager application built with React that allows users to save, view, edit, and delete their passwords with ease. PassOP helps you manage your passwords efficiently while keeping them safe.
This project is a part of the Girl Script Summer of Code (GSSOC) and Hacktoberfest.
- Add Password: Save a new password with a website URL, username, and password.
- Edit Password: Update an existing password.
- Delete Password: Remove a saved password.
- Copy to Clipboard: Easily copy website URLs, usernames, and passwords to the clipboard.
- Show/Hide Password: Toggle visibility of the password field.
Follow these instructions to run the PassOP project on your local machine.
Ensure you have the following installed:
- Node.js (version 14.x or higher)
- npm (Node package manager)
- Vite (for running the React front-end)
- MongoDB (you'll need a MongoDB instance, either locally or on the cloud)
git clone https://github.com/<your-username>/PassOP.git
cd PassOP
- Navigate to the backend folder:
cd backend
- Install the required dependencies:
npm install
- Set up your environment variables. Create or edit the
.env
file in the backend folder with the following:MONGO_URI=<your-mongodb-connection-string> DB_NAME=<your-database-name>
- Run the backend server:
node server.js
- Move back to the root directory:
cd ..
- Install the front-end dependencies:
npm install
- Run the React application using Vite:
npm run dev
- Open your browser and go to: http://localhost:3000
Now your password manager should be running locally!
PassOP/
├── backend/ # Backend Node.js application
│ ├── server.js # Main server file
│ ├── .env # Environment configuration (not included in repo)
│ ├── package.json # Backend dependencies
│ └── ... # Other backend files
├── frontend/ # React frontend application (using Vite)
│ ├── src/ # React components and files
│ ├── public/ # Public static files
│ ├── package.json # Frontend dependencies
│ └── vite.config.js # Vite configuration file
├── README.md # This file
└── ...
For contribution guidelines and instructions, please see the CONTRIBUTING.md file.
Please make sure to review and follow the project's Code of Conduct when contributing.