Skip to content

mrdcvlsc/password-manager

Repository files navigation

password-manager

This branch uses better-sqlite3 as it's session store.

build tests

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/

web-app-demo-gif


Note

During development, or when hosting the web application locally; the session cookie's secure property at line 52 of the app.js file needs to be set to false 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.