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

openpane

v0.2.1

Published

Open exact terminal grids across one display or every display.

Readme

openpane

Open a clean grid of terminal windows on the current display or every display, then run the same command in each one.

Homepage: https://made-by-chris.github.io/openpane/

Install

NPX

Run it without a separate install:

npx openpane 2 2 claude

The npm package is a thin launcher that downloads the matching native binary from GitHub Releases on first run.

Native installers

These installers use GitHub Releases and native binaries directly. No Node runtime.

Windows

irm https://raw.githubusercontent.com/made-by-chris/openpane/main/scripts/install.ps1 | iex
openpane 2 2 claude

macOS

curl -fsSL https://raw.githubusercontent.com/made-by-chris/openpane/main/scripts/install.sh | sh
openpane 2 2 claude

Linux

curl -fsSL https://raw.githubusercontent.com/made-by-chris/openpane/main/scripts/install.sh | sh
openpane 2 2 claude

Usage

openpane <x-axis cells> <y-axis cells> [*] [command...]
  • openpane 4 2 "claude -p 'hello'" opens a 4-by-2 grid on the active display
  • openpane 3 3 opens a 3-by-3 grid of interactive terminals
  • openpane 1 2 opens two vertically stacked terminals
  • openpane 3 1 opencode opens three side-by-side terminals running opencode
  • openpane 2 1 * "claude -p 'hello'" opens a 2-by-1 grid on every display

Platform notes

  • Windows uses Windows Terminal via wt.exe
  • macOS uses Terminal.app via osascript
  • Linux uses wmctrl, xdotool, xrandr, and the first available terminal from gnome-terminal, xfce4-terminal, konsole, kitty, alacritty, or xterm

Local development

cargo run -- 2 2 claude

Release install behavior

  • Unix installs the native binary to ~/.local/share/openpane/<version> and writes shims to ~/.local/bin
  • Windows installs the native binary to %LOCALAPPDATA%\openpane\<version> and writes shims to %USERPROFILE%\.openpane\bin
  • The installers pull the latest GitHub release by default

Build from source

cargo build --release