The Password Manager is a secure and user-friendly application that allows users to store and manage their passwords efficiently. Built with modern web technologies, it ensures data security with SQLite3.
- Secure Storage: Passwords are stored securely using SQLite3.
- User-Friendly Interface: Built with React for a responsive and intuitive user experience.
- Environment Configuration: Easily configurable with environment variables.
- Node.js (version >= 20.x)
- npm (Node Package Manager)
-
Create a
.env
File: Store yourSECRET_KEY
in the.env
file for secure access.SECRET_KEY=your_secret_key_here
-
Install Dependencies: Run the following command to install all necessary packages.
npm install
-
Rebuild Native Dependencies: Make the project compatible with
better-sqlite3
.npm run rebuild
-
Start the Development: Launch the application in development mode.
npm run dev
-
Build the App: Builds the for your os (win, mac, linux)
npm run build:Your-OS
The_password_manager/
βββ electron/ # Directory containing Electron-related files
β βββ db/ # Directory for database management
β β βββ Managers/ # Directory for database manager classes
β β β βββ AccountManager.ts # Handles account-related database operations
β β β βββ WebsiteManager.ts # Manages website-related data in the database
β β β βββ SignedInByManager.ts # Manages signed-in user sessions and related data
β β βββ config.ts # Configuration settings for the database connection
β β βββ csvManager.ts # Utility for importing/exporting data in CSV format
β β βββ DBConnection.ts # Establishes and manages the database connection
β β βββ schema.ts # Project's database schema definitions
β β βββ types.ts # Database type definitions for TypeScript usage
β β βββ utils.ts # Utility functions for database operations
β βββ electron-env.d.ts # Type definitions for Electron environment
β βββ main.ts # Main Electron entry point; initializes the application
β βββ preload.ts # Preloads scripts for the renderer process; secures context
β βββ utils.ts # General utility functions for the Electron app
βββ public/ # Public directory for static assets
β βββ font/ # Directory for custom fonts
β βββ icons # All other public icons
βββ src/ # Directory for React frontend components
β βββ assets/ # Directory for static assets used in the React app
β βββ components/ # Reusable React components
β βββ context/ # Context API providers for state management
β βββ style/ # Stylesheets (CSS) for the React app
β βββ app.tsx # Main application component; entry point for React
β βββ main.tsx # React rendering
β βββ utils.tsx # Utility functions for the React app
βββ .env # Environment variables for the application
This project is open source and available under the AGPL-3.0 License.
If this project helped you, please consider giving it a βοΈ!