npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@suman-jangili/secure_vault-ui

v0.1.0

Published

Hosts a React + Vite frontend with a Secure Self‑Hosted Password Manager API + Web Dashboard.

Readme

SecureVault Frontend

React + TypeScript password manager interface with client-side encryption.

Why this project

  • Individuals and small teams want a password manager that keeps their credentials under their own control (no reliance on third‑party cloud services).
  • Existing open‑source managers (Bitwarden, KeePass) either require a desktop client or a separate server component that many users find hard to set up and keep secure.
  • Users also want a modern, responsive web UI that works on desktop and mobile without installing.

Tech Stack

  • Framework: React 18
  • Language: TypeScript 5.x
  • Build Tool: Vite 5.x
  • Styling: Tailwind CSS 3.x
  • HTTP Client: Axios
  • Testing: Vitest + React Testing Library
  • Routing: React Router 6.x

Installation

Prerequisites

# Node.js 18+
node --version  # Should be >= 18

Setup

# Clone Repository
git clone https://github.com/sumanjangili/password-manager.git
cd password-manager
cd frontend

# Install dependencies
npm install

# Start development server
npm run dev

Configuration

Environment Variables

# Create .env.development:
VITE_API_BASE_URL=http://localhost:8080/api

# Create .env.production:
VITE_API_BASE_URL=https://api.yourdomain.com/api

Available Variables | Variable | Description | Default | | -------- | ----------- | ------- | | VITE_API_BASE_URL | Backend API endpoint | http://localhost:8080/api | | NODE_ENV | Environment (auto-set) | development |

Scripts

# Development
npm run dev              # Start dev server (port 5173)

# Production
npm run build            # Build for production
npm run preview          # Preview production build

# Testing
npm run test             # Run tests
npm run test:coverage    # Run tests with coverage

# Linting
npm run lint             # ESLint check
npm run lint:fix         # Auto-fix lint issues

# Type checking
npm run type-check       # TypeScript check

Project Structure


src/
├── components/          # Reusable components
│   ├── TotpLogin.tsx    # 2FA login component
│   ├── TotpSetup.tsx    # 2FA setup component
│   └── PasswordGenerator.tsx
├── contexts/            # React contexts
│   └── VaultContext.tsx # Global vault state
├── lib/                 # Utilities
│   ├── api.ts           # Axios instance
│   └── crypto.ts        # Encryption functions
├── pages/               # Route pages
│   ├── Login.tsx        # Login page
│   └── Dashboard.tsx    # Main dashboard
├── App.tsx              # Root component
└── main.tsx             # Entry point