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

phosphor-cli

v0.2.0

Published

Render images in your terminal — Kitty, Sixel, iTerm2, halfblock with tmux passthrough

Readme

Render images in your terminal. Supports Kitty graphics protocol with Unicode virtual placement, Sixel, iTerm2, and halfblock fallback — with full tmux passthrough.

Built for terminals that support modern graphics protocols (Ghostty, Kitty, WezTerm, iTerm2) and works seamlessly inside tmux.

Install

Homebrew:

brew tap alkautsarf/tap
brew install phosphor

curl (macOS / Linux):

curl -fsSL https://raw.githubusercontent.com/alkautsarf/phosphor/main/install.sh | sh

Usage

# Display an image
phosphor image.png

# Short aliases
ph image.png
pho image.png

# Resize to specific width (in terminal cells)
phosphor image.jpg -w 60

# Force a specific protocol
phosphor image.png -p halfblock

# Show image info + detected protocol
phosphor image.png --info

# Read from stdin
cat screenshot.png | phosphor

# Open a PDF (interactive viewer)
phosphor document.pdf

# Open PDF at specific page
phosphor document.pdf --page 5

PDF Controls

→ / l / j / Space   Next page
← / h / k           Previous page
1-9                 Jump to 10%-90%
q                   Quit

Supported Formats

| Format | Support | |--------|---------| | PDF | Interactive viewer (requires poppler) | | PNG | Native | | JPEG | Native | | WebP | Native | | GIF | Native (first frame) | | AVIF | Native | | TIFF | Native | | SVG | Native (rasterized) | | BMP | Native | | HEIC/HEIF | macOS only (via sips) |

Protocols

phosphor auto-detects the best protocol for your terminal:

| Protocol | Terminals | Quality | |----------|-----------|---------| | Kitty (default) | Ghostty, Kitty, WezTerm, Rio | Pixel-perfect | | iTerm2 | iTerm2, WezTerm | Pixel-perfect | | Sixel | foot, mlterm, VTE-based | Good | | Halfblock | Any terminal | Blocky fallback |

tmux Support

phosphor works inside tmux via:

  • Virtual Unicode placement for image rendering (same technique as ratatui-image)
  • DCS passthrough for transmitting image data to the outer terminal
  • Automatic cell size detection via CSI 16t query

Library Usage

import { display, createRenderer } from 'phosphor'

// Simple
await display('./photo.png')
await display(buffer, { width: 40, height: 20 })

// Advanced
const renderer = await createRenderer()
console.log(renderer.protocol) // 'kitty' | 'sixel' | 'iterm2' | 'halfblock'
console.log(renderer.tmux)     // true | false
await renderer.display('./photo.png', { width: 60 })

Environment Variables

| Variable | Description | Example | |----------|-------------|---------| | PHOSPHOR_CELL_SIZE | Override cell pixel size detection | 20x56 |

Build from Source

git clone https://github.com/alkautsarf/phosphor.git
cd phosphor
bun install
bun run src/index.ts image.png

# Compile to standalone binary
bun run compile

License

MIT