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

otplib-cli

v13.4.0

Published

CLI tool for managing encrypted OTP vaults

Readme

otplib-cli

A Command Line tool for OTP operations. It provides stateless, scriptable and storage agnostic tooling.

Installation

npm install -g otplib-cli

Two commands are available:

  • otplibx - Includes an encrypted .env based storage
  • otplib - Stateless CLI for scripting and custom backends

Quick Start

otplibx

# Initialize secrets file
otplibx init

# Add entry from file or clipboard
cat otp-uri.txt | otplibx add
pbpaste | otplibx add

# Generate token
otplibx token A1B2C3D4

# List entries
otplibx list
otplibx list --filter github

# Interactive selection with fzf
npx otplibx token -n "$(npx otplibx list | fzf | cut -f2)" | pbcopy
# OR
npx otplibx list | fzf | cut -f2 | xargs -I {} npx otplibx token -n {} | pbcopy

otplib

For scripting or custom secret backends, use the stateless otplib CLI.

# Encode an otpauth URI into internal format
cat otp-uri.txt | otplib encode
# Output: A1B2C3D4=eyJkYXRhIjp7...}}

# Store the output in a JSON file (storage.json)
# { "A1B2C3D4": "eyJkYXRhIjp7...}}" }

# Generate token
cat storage.json | otplib token A1B2C3D4

# List entries
cat storage.json | otplib list
cat storage.json | otplib list --filter github

# Verify a token
cat storage.json | otplib verify A1B2C3D4 123456

Commands

otplibx

| Command | Description | | ------------------------------ | --------------------------------- | | init [file] | Initialize encrypted secrets file | | add | Add entry (reads from stdin) | | token [-n] [id] | Generate token | | type [-n] [id] | Output entry type | | hotp update-counter <id> [n] | Update HOTP counter | | verify <id> <token> | Verify token | | list [--filter <query>] | List entries | | guard update <key> <value> | Update guardrail | | guard rm <key> | Remove guardrail | | guard show | Show guardrails |

Options: -f, --file <path> (default: .env.otplibx)

otplib

| Command | Description | | ------------------------------ | ------------------------------------------ | | encode [--save-uid <file>] | Encode otpauth URI/JSON to internal format | | list [-f, --filter <query>] | List entries | | token [-n] <id> | Generate token (auto-detect) | | type [-n] <id> | Output entry type | | hotp update-counter <id> [n] | Update HOTP counter | | verify <id> <token> | Verify token | | guard show | Show guardrails |

Documentation

See the full documentation for detailed usage, architecture, and integration with other secret managers.

License

MIT