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

podcast-player-cli

v0.0.6

Published

Terminal podcast player distributed as a cross-platform Go binary.

Readme

podcast-player-cli

Terminal podcast player with cover art, playback resume, and optional sync via a private GitHub Gist.

Features

  • Browse podcast feeds in a terminal UI
  • Play episodes with ffplay
  • Render podcast cover art in the terminal with chafa
  • Resume from the last saved playback position
  • Cache feeds, cover art, durations, and rendered art locally
  • Sync config and play state across machines with GitHub Gists
  • Install as a Go binary or through npm-distributed platform binaries

Requirements

  • Go 1.25+ if building from source
  • ffplay and ffprobe from ffmpeg
  • chafa for terminal cover-art rendering
  • gh if you want to use sync

If ffplay is missing, playback will fail. If chafa is missing, the app still runs, but cover art will not render.

Install

npm

npm install -g podcast-player-cli

This package ships prebuilt binaries for:

  • macOS arm64
  • macOS amd64
  • Linux arm64
  • Linux amd64

Node.js 18+ is required for the npm launcher.

Go

go build -o podcast-player-cli .

Run

Pass feed URLs directly:

podcast-player-cli https://example.com/feed.xml https://example.com/another.xml

Or keep your subscriptions in the config file and just run:

podcast-player-cli

You can also route feed and cover-art requests through a proxy:

podcast-player-cli --proxy http://127.0.0.1:7890

Config

On first launch the app creates:

  • ~/.podcast-player-cli/config.json
  • ~/.podcast-player-cli/play-state.json
  • ~/.podcast-player-cli/sync-state.json
  • ~/.podcast-player-cli/cache/

Example config:

{
  "feed_urls": [
    "https://example.com/feed.xml",
    "https://example.com/another.xml"
  ],
  "proxy_url": "http://127.0.0.1:7890",
  "sync": {
    "gist_id": "YOUR_GIST_ID"
  }
}

Notes:

  • CLI feed URLs override feed_urls for that run
  • --proxy overrides proxy_url
  • playback state is saved automatically while listening

Controls

  • j / k or arrow keys: move selection
  • enter: open a subscription or play the selected episode
  • l: move deeper into episodes or episode details
  • h / backspace: move back
  • p: play selected episode
  • space: pause or resume playback
  • z: toggle zen mode
  • r: refresh feeds
  • g / G: jump to top or bottom
  • esc: back or exit zen mode
  • ctrl+c: quit

Sync

Sync stores config.json, play-state.json, and a small manifest in a private GitHub Gist.

Before using sync:

  • install GitHub CLI gh
  • run gh auth login

Initialize sync:

podcast-player-cli sync init

Pull from the configured gist:

podcast-player-cli sync pull

Push local state to the configured gist:

podcast-player-cli sync push

Override the gist ID for a single command:

podcast-player-cli sync pull --gist <gist-id>
podcast-player-cli sync push --gist <gist-id>

Development

Run tests:

go test ./...

Build locally:

go build ./...