This branch uses better-sqlite3 as it's session store
.
A simple web application for managing and storing password, the frontend was created using vanilla html, css, and javascript, it supports mobile and desktop view, the backend uses nodejs and fastify web framework, and for the database, sqlite3 is use with the help of better-sqlite3.
Warning
Since this is a password-manager application where you can store sensitive information, I (the author) do not claim that it is a secure & fool proof application, there might be some vulnerabilities that I have missed when implementing this application, I created this project with the intent to learn frontend and backend web development only (not to make a production grade application), USE AT YOUR OWN RISK.
Demo
Live App Demo : https://password-manager-demo.onrender.com/
Note
During development, or when hosting the web application locally; the session cookie's
secure
property at line52
of theapp.js
file needs to be set tofalse
in order to enable logging in.
Algorithms
TODO : CLICK HERE
Run Locally
git clone https://github.com/mrdcvlsc/password-manager.git
cd password-manager
mv template.env .env
npm install
npm run dev
If the mv
command is not supported in your system,
just rename the template.env
to .env
before
running npm run dev
.