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

@pioneer-dynamics/flashview-cli

v1.6.1

Published

CLI tool for FlashView — create and manage encrypted secrets

Readme

FlashView CLI

A command-line tool for creating and managing encrypted secrets via the FlashView API. Secrets are encrypted locally on your machine before being sent to the server — your plaintext never leaves your device.

Installation

Option 1: Download pre-built binary (recommended if you don't have Node.js)

Download the latest binary for your platform from the GitHub Releases page.

The binary includes a bundled Node.js runtime and is approximately 70-90MB depending on your platform.

macOS (Apple Silicon):

chmod +x flashview-darwin-arm64
sudo mv flashview-darwin-arm64 /usr/local/bin/flashview

Linux (x64):

chmod +x flashview-linux-x64
sudo mv flashview-linux-x64 /usr/local/bin/flashview

Linux (arm64):

chmod +x flashview-linux-arm64
sudo mv flashview-linux-arm64 /usr/local/bin/flashview

Windows: Rename flashview-windows-x64.exe to flashview.exe and add its directory to your PATH.

Verify download integrity: Each release includes a checksums-sha256.txt file. Verify your download:

sha256sum --check checksums-sha256.txt

macOS Gatekeeper: If you see "this app is from an unidentified developer", right-click the binary and select "Open", or run:

xattr -d com.apple.quarantine /usr/local/bin/flashview

Windows SmartScreen: If Windows Defender SmartScreen blocks the binary, click "More info" then "Run anyway". The binary is a modified Node.js executable which may trigger false positives.

Option 2: Install via npm (requires Node.js 20+)

npm install -g @pioneer-dynamics/flashview-cli

How to upgrade

Binary users: Download the latest release from the Releases page and replace your existing binary. Run flashview --version to check your current version, or run flashview update to see if a newer version is available.

npm users:

flashview update

Setup

The easiest way to get started is to log in via your browser:

flashview login

This opens your browser, lets you authenticate with your existing credentials (including 2FA and passkeys), choose token permissions, and automatically saves the API token to your CLI config. To update permissions later, just run flashview login again.

Alternatively, you can manually create a token from your API Tokens page and configure the CLI directly:

flashview config set --token your-api-token

The default server URL is https://flashview.link. To use a self-hosted instance, pass --url:

flashview login --url https://your-server.com
flashview config set --token your-api-token --url https://your-server.com

View current configuration

flashview config show

Clear stored configuration

flashview config clear

Usage

Create a secret

# With inline message
flashview create --message "my secret password"

# Pipe from stdin
echo "my secret" | flashview create

# With custom expiry (default: 1d)
flashview create -m "secret" --expires-in 7d

# With a specific passphrase
flashview create -m "secret" --passphrase "my-custom-passphrase"

# JSON output for scripting
flashview create -m "secret" --json

Expiry options: 5m, 30m, 1h, 4h, 12h, 1d, 3d, 7d, 14d, 30d

After creating a secret, save the URL and passphrase immediately — they cannot be retrieved later.

List secrets

flashview list

# Paginated
flashview list --page 2

# JSON output
flashview list --json

Burn (delete) a secret

flashview burn <message_id>

# Skip confirmation
flashview burn <message_id> --yes

# JSON output
flashview burn <message_id> --json

Security Notes

  • Encryption is performed locally using AES-256-GCM with PBKDF2 key derivation (SHA-512, 64,000 iterations). The server never sees your plaintext.
  • API tokens are stored in plaintext in your OS config directory (e.g., ~/.config/flashview-cli/config.json). On shared systems, set appropriate file permissions: chmod 600 ~/.config/flashview-cli/config.json.
  • Passphrases are never sent to the server.