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 🙏

© 2025 – Pkg Stats / Ryan Hefner

infisical-browser

v1.0.0

Published

Local browser for Infisical secrets with tree view and search

Readme

Infisical Secrets Browser

A local React + TypeScript application for browsing your Infisical secrets in a tree view with search functionality.

Features

  • 🔐 Secure authentication using Universal Auth
  • 📂 Recursive tree view of all folders and secrets
  • 🔍 Fuzzy search across secret keys and values
  • 🎨 Compact, streamlined UI for browsing many secrets
  • 🔗 Direct links to open folders in Infisical UI
  • ⚡ Expand/collapse all children recursively
  • 🚀 One-command npx launcher

Quick Start

Run anywhere without installation:

npx @justinchang/infisical-client

On first run, you'll be prompted to enter your Infisical credentials:

  • INFISICAL_UNIVERSAL_AUTH_CLIENT_ID
  • INFISICAL_UNIVERSAL_AUTH_CLIENT_SECRET
  • INFISICAL_PROJECT_ID
  • INFISICAL_ENV_SLUG (e.g., dev, prod)

The credentials will be saved to a .env file in the package directory for future use.

Manual Installation

If you prefer to clone and run locally:

git clone https://github.com/justinchang/infisical-client.git
cd infisical-client
yarn install
yarn start

Or run the dev server directly:

yarn dev

The application will open at http://localhost:8394.

Getting Infisical Credentials

  1. Go to your Infisical project settings
  2. Navigate to Access ControlMachine Identities
  3. Create a new Universal Auth identity
  4. Copy the Client ID and Client Secret
  5. Note your Project ID (from the URL: /project/{PROJECT_ID}/...)
  6. Choose your environment slug (dev, staging, prod, etc.)

Usage

Search

Type in the search box to filter secrets by key or value. Search highlights matching text and auto-expands folders containing matches.

Folder Controls

  • Click folder name to expand/collapse
  • [+] button: Expand all children recursively
  • [-] button: Collapse all children recursively
  • link: Open folder in Infisical web UI

Keyboard Shortcuts

  • Ctrl+C: Stop the server

Tech Stack

  • React 18 - UI framework
  • TypeScript - Type safety
  • Vite - Fast build tool and dev server
  • Zod - Runtime type validation for API responses
  • Fuse.js - Fuzzy search

Security Note

This application is designed for local use only. It displays all secret values in plain text without any masking. Do not deploy this application to any public server or expose it to the internet.

Configuration

The application uses a .env file with the following variables:

INFISICAL_UNIVERSAL_AUTH_CLIENT_ID=your-client-id
INFISICAL_UNIVERSAL_AUTH_CLIENT_SECRET=your-client-secret
INFISICAL_PROJECT_ID=your-project-id
INFISICAL_ENV_SLUG=dev

Development

# Install dependencies
yarn install

# Run type checking
yarn type-check

# Start dev server
yarn dev

# Build for production
yarn build

# Preview production build
yarn preview

Publishing

To publish to npm:

npm version patch  # or minor, major
npm publish --access public

License

MIT

Author

Justin Chang