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

@ssdavidai/zotail

v1.2.0

Published

Set up Tailscale on your Zo workspace with auto-restart on session reboot

Downloads

483

Readme

zotail

Connect your Zo Computer workspace to your private Tailscale network. Access your workspace from any device on your tailnet — SSH, VS Code Remote, HTTP services, everything — without exposing ports to the public internet.

Why Tailscale on Zo?

Zo workspaces are ephemeral cloud environments. By default, you access them through the browser. With Tailscale, your workspace joins your private mesh network and gets a stable IP address, so you can:

  • SSH directly into your workspace from your laptop, phone, or any device on your tailnet
  • Access dev servers (Next.js, Flask, Jupyter, etc.) without port forwarding or tunnels
  • Use VS Code Remote SSH for a native editor experience connected to your Zo workspace
  • Connect to other machines on your tailnet from inside Zo (databases, APIs, NAS, home servers)
  • Persist across reboots — zotail configures supervisord so Tailscale auto-starts when your workspace restarts

Quickstart

npx @ssdavidai/zotail setup

That's it. You'll be prompted for:

  1. Tailscale auth key — get one at https://login.tailscale.com/admin/settings/keys (use a reusable key if you restart workspaces often)
  2. Hostname — defaults to zo-workspace, shown in your tailnet

Once setup completes, your workspace appears on your tailnet and you can reach it from any device.

Commands

zotail setup

Interactive setup. Installs the Tailscale sidecar, saves your auth key, configures supervisord for auto-restart, and connects to your tailnet.

npx @ssdavidai/zotail setup

zotail status

Shows your Tailscale connection status, IP addresses, and all nodes on your tailnet.

npx @ssdavidai/zotail status
📡 Tailscale Status

Supervisor: tailscale                        RUNNING   pid 37555, uptime 1:23:45

Backend:    Running
Hostname:   zo-workspace
Tailnet:    yourname.ts.net
IPs:        100.x.y.z

Nodes (3):
  ★ zo-workspace (this node)       100.x.y.z          linux
  ● my-laptop                      100.x.y.w          macOS
  ● my-phone                       100.x.y.v          iOS

zotail cleanup

Remove stale/offline nodes from your tailnet. Useful when you've spun up many Zo workspaces and old ones are cluttering your device list. Requires a Tailscale API key.

npx @ssdavidai/zotail cleanup

zotail teardown

Removes Tailscale from your workspace — stops the sidecar, removes the supervisor config, and cleans up stored keys.

npx @ssdavidai/zotail teardown

Tips

  • Use a reusable auth key. Zo workspaces restart between sessions. A reusable key means Tailscale reconnects automatically without re-auth.
  • Enable MagicDNS. With MagicDNS on your tailnet, you can reach your workspace as zo-workspace.yourname.ts.net instead of remembering the IP.
  • SSH access. Once connected, ssh root@zo-workspace (or whatever hostname you chose) works from any device on your tailnet.
  • Multiple workspaces. Give each workspace a unique hostname during setup (e.g., zo-project-a, zo-project-b) so they don't conflict.
  • Cleanup regularly. Ephemeral workspaces leave behind stale nodes. Run zotail cleanup periodically to keep your tailnet tidy.

How It Works

Under the hood, zotail:

  1. Stores your Tailscale auth key in ~/.zo_secrets
  2. Writes a startup script to /usr/local/bin/start-tailscale.sh that runs tailscaled in userspace networking mode
  3. Adds a [program:tailscale] entry to /etc/zo/supervisord-user.conf so the sidecar auto-starts and auto-restarts
  4. Tailscale authenticates using your auth key and joins your tailnet

All operations are idempotent — running setup multiple times is safe.

Requirements

  • A Zo Computer workspace (Tailscale binaries are pre-installed)
  • A Tailscale account with an auth key
  • Node.js (pre-installed on Zo)