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

@codingdestro/wallet

v0.1.2

Published

A Node.js CLI wallet tool template

Readme

wallet — Encrypted Secret Manager

A CLI tool for managing passwords, API keys, and secrets in an AES-256-GCM encrypted file. Secrets are decrypted in memory only — plaintext never touches disk.

Install

# From npm
npm install -g @codingdestro/wallet

# Or run directly
npx @codingdestro/wallet <command>

Quick Start

# Create a new encrypted wallet (you'll be prompted for a password)
wallet init

# Add a secret
wallet add my-api-key

# List stored keys
wallet list

# Copy a secret to clipboard
wallet copy my-api-key

# Delete a secret
wallet delete my-api-key

Commands

| Command | Alias | Description | | --------------------- | ----- | ---------------------------------- | | wallet init | | Create a new encrypted wallet file | | wallet add <key> | a | Add or update a secret | | wallet list | l | List all stored key names | | wallet copy <key> | c | Copy a secret to clipboard | | wallet delete <key> | d | Remove a secret |

All commands accept -f, --file <path> to specify a custom wallet file (default: wallet.enc).

How It Works

  1. wallet init prompts for a master password, then creates wallet.enc — an encrypted JSON file.
  2. Subsequent commands prompt for the same password to decrypt, read, or modify secrets.
  3. Secrets are encrypted with AES-256-GCM using a key derived via scrypt with a random salt and IV per encryption.
  4. The wallet file format is binary: [16B salt][12B IV][16B auth tag][ciphertext].

Build from Source

git clone <repo-url>
cd wallet
npm install
npm run build     # produces dist/index.js

Requires Node.js 20+, TypeScript, and tsup (included as dev deps). Tests use Bun — run with bun test.

Security

  • AES-256-GCM authenticated encryption
  • scrypt key derivation (random 16-byte salt per encryption)
  • Random 12-byte IV per encryption
  • Secrets decrypted in memory only
  • Zero plaintext written to disk