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

@shoppingjaws/peer

v0.1.1

Published

CLI tool for managing wezterm panes, peer groups, and inter-pane messaging

Downloads

28

Readme

@shoppingjaws/peer

A CLI tool for managing WezTerm panes, peer groups, and inter-pane messaging.

Prerequisites

Install

npm install -g @shoppingjaws/peer

Commands

peer <list|peek|inbox|new-pane|new-tab|history|clean>

peer list

List panes in the same tab and peer group.

peer list
WINID  TABID  PANEID  RELATION  WORKSPACE  SIZE       TITLE
0      0      0       self      default    120x40     ~
0      0      1       child     default    120x20     ~

RELATION shows the relationship from your perspective:

  • self — current pane
  • child — pane you created
  • parent — pane that created you
  • none — same tab but no peer relation

peer peek <pane-id>

Read terminal output from a pane. Only works for panes in the same tab or peer group.

peer peek 1
peer peek 1 --start-line 0 --end-line 50

| Option | Description | |---|---| | --start-line N | Start reading from line N | | --end-line N | Stop reading at line N |

peer new-pane [opts] [-- cmd]

Split a new pane in the current tab and register it as a child in the peer group. Options are passed through to wezterm cli split-pane.

peer new-pane
peer new-pane --horizontal
peer new-pane -- bash

peer new-tab [opts] [-- cmd]

Spawn a new tab and register it as a child in the peer group. Options are passed through to wezterm cli spawn.

peer new-tab
peer new-tab -- zsh

peer inbox send <pane-id> <message>

Send a message to the specified pane.

peer inbox send 1 "build done"

peer inbox open

Show unread messages and mark them as read.

peer inbox open
[#1 from:0 2025-04-05 12:00:00] build done
1 message(s) marked as read.

peer history [pane-id]

Show message history. Optionally filter by a specific pane.

peer history
peer history 1

peer clean

Delete all messages for the current session.

peer clean

Data Storage

Messages and peer group data are stored in /tmp/peer/peer.db (SQLite), isolated per session (WEZTERM_UNIX_SOCKET).

License

MIT