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

@wistia/wistia-cli

v2026.5.1

Published

Command-line interface for the Wistia Data API

Downloads

21

Readme

Wistia CLI

npm

Command-line interface for the Wistia Data API — manage media, folders, channels, webinars, captions, analytics, and more from your terminal.

Install

npm install -g @wistia/wistia-cli

# or run without installing (agents, CI):
npx -y @wistia/wistia-cli media list

# pin an API-version channel:
npm install -g @wistia/wistia-cli@api-2026-05

Requires Node 18+. The package installs a prebuilt binary for your platform; the command is wistia.

Quickstart

Authenticate with a Wistia API token (create one in your account settings):

# interactive setup (stores the token in your OS keychain):
wistia configure

# or non-interactive, via environment variable or flag:
export WISTIA_CLI_BEARER_AUTH="your-api-token"
wistia media list
wistia media get --media-hashed-id abc123

Run wistia --help for the full command tree.

For agents & CI

The CLI is designed to work well in non-interactive environments:

# zero-install invocation with env-var auth:
WISTIA_CLI_BEARER_AUTH="$TOKEN" npx -y @wistia/wistia-cli media list --output-format json
  • Auth via WISTIA_CLI_BEARER_AUTH or --bearer-auth — no prompts.
  • Structured output via --output-format (json, yaml, table, and the LLM-friendly toon), plus built-in --jq filtering.
  • Pin behavior to an API version with the api-YYYY-MM dist-tags.

How it works

@wistia/wistia-cli is a small launcher. The actual CLI is a static Go binary shipped in per-platform packages (@wistia/wistia-cli-<platform>-<arch>) listed as optionalDependencies — npm installs exactly the one matching your OS/CPU. There are no install scripts, and no network access happens at install time beyond the registry itself.

Note: installing with --omit=optional (or --no-optional) skips the binary and the CLI will not run. Reinstall without those flags, or use another install method.

Supported platforms: macOS (arm64, x64), Linux (arm64, x64 — glibc and musl), Windows (arm64, x64).

Other install methods

| Channel | Command | |---|---| | Homebrew | brew install wistia/tap/wistia-cli | | Shell installer | curl -fsSL https://raw.githubusercontent.com/wistia/wistia-cli/main/scripts/install.sh \| bash | | Manual download | GitHub Releases |

Versioning

Versions are dated (YYYY.M.patch, e.g. 2026.5.1) and track Wistia API versions. Each API version has an api-YYYY-MM dist-tag channel; latest points at the newest API version.

Links

MIT © Wistia, Inc.