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

onepilot

v0.10.2

Published

Onepilot host CLI: persistent terminal sessions, server monitoring, and QR pairing for the Onepilot iOS app.

Readme

onepilot

The host side CLI of Onepilot, the iOS app that puts your servers and your terminal in your pocket. Install it on any Linux or macOS server to get persistent terminal sessions, opt in health monitoring, and QR pairing with the app.

Install

npm install -g onepilot

Quick start

onepilot pair            # print a QR code; scan it with the Onepilot app
onepilot serve           # start the persistent session daemon
onepilot list            # show live sessions
onepilot monitor status  # inspect opt in monitoring

The Onepilot app can also install this CLI on your servers automatically; the npm package is for people who prefer to manage it themselves.

Update

npm install -g onepilot && onepilot upgrade

onepilot upgrade hands the running daemon over to the new version in place: it re-execs the updated binary without dropping a single session, so your live shells, their running commands, and their scrollback all survive the update (0.7.1+). Updating from a version older than 0.7.1 still restarts the daemon once; every update after that is seamless. Plain npm install -g onepilot without the upgrade leaves the old daemon serving until it next restarts.

How it works

The serve daemon owns your shells and their scrollback on the server itself, listening on a loopback port only. Your phone reaches it through the SSH connection it already has: no inbound port, no relay, no third party in the data path. Disconnect whenever you want; the session and its history are there when you come back.

Security

  • No outbound connections by default: no telemetry, no update checks. If you opt in to monitoring, the daemon POSTs alerts to the single webhook URL you configured, and nothing else.
  • Everything lives under ~/.onepilot, runs as your user, and needs no sudo.
  • Uninstall: npm uninstall -g onepilot, then pkill -f 'onepilot[^ ]* s[e]rve'; rm -rf ~/.onepilot to stop the daemon and remove its state.

Platforms

Linux and macOS on x64 and arm64. The binary was called onepilot-bridge before 0.3.0; that command name still works.