Saving passwords in a plain text .txt file is insecure. I created this tool as a more secure solution for storing passwords.
Here's how it works: The app encrypts your passwords and stores some metadata about them. These passwords are encrypted using a single master password that you set up when you first start the application. The data is stored in your browser's localStorage; naturally, all sensitive data remains encrypted.
You can also download this encrypted data as a JSON file. This allows you to use this web app to load that file (possibly from another device) and access your passwords using only your master password.
It's a simple concept that works using the power of cryptography. While I believe it's secure, I am not a qualified security expert, so please use it with that in mind.
It is a vite project, so pnpm dev for dev and pnpm build to build

