Look at the nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoist
Start the development server on http://localhost:3000
npm run dev
Build the application for production:
npm run build
Locally preview production build:
npm run preview
Checkout the deployment documentation for more information.
Frontend for the easy password manager:
-
Server never knows the real password.
-
All encryption happens on the frontend side using the web crypto apis.
- the original password is hashed to sha256 and sent to the server. The server store the sha256 password using bcrypt.
- the original password is hashed to PBKDF2 and this is used to derive a AES-GCM key for the encryption.
-
bakcend repo: https://github.com/hel-o/api-ez-pwd