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

@zixt/host

v0.0.174

Published

Zixt Host: runs AI-teammate Tasks on your own machine, paired to the Zixt cloud

Readme

Zixt Host

The Zixt Host runs your AI teammates' Tasks on your own computer. Your coding agents, credentials, and repositories stay on your machine; the Zixt cloud only coordinates the work.

Run it

Pair a Machine in Zixt (Machines → Pair a machine) to get its private pairing code. Zixt shows that code once; it remains valid until you replace it or revoke the Machine. Then start the Host with it:

ZIXT_HOST_TOKEN='zxh_...' npx @zixt/host@latest

npx @zixt/host@latest always runs the newest release. To install it as a command instead:

npm install -g @zixt/host
ZIXT_HOST_TOKEN='zxh_...' zixt-host

Keep it running on an always-on machine: Tasks cannot start while the Host is asleep, signed out, or offline.

Start automatically

Use the command for your operating system on Zixt's Machines page. It ends with --install-service, for example:

ZIXT_HOST_TOKEN='zxh_...' npx @zixt/host@latest --install-service

This starts Zixt immediately and installs the native, per-user automatic-start mechanism:

  • Linux: a systemd user service starts after reboot, including before sign-in when user lingering is available. If lingering cannot be enabled, setup stops and prints the one administrator command needed before retrying.
  • macOS: a LaunchAgent starts Zixt after this account signs in.
  • Windows: a least-privilege Scheduled Task starts Zixt after this account signs in.

Zixt deliberately uses the same computer account that owns the runner login; it never runs Tasks as root, Administrator, or LocalSystem. The Linux pairing code lives in ~/.config/zixt/host.env (or the configured XDG_CONFIG_HOME) and the macOS code lives in the account's mode-0600 Zixt configuration. Windows protects the stored code with that account's DPAPI key and restricts the startup files to that account and SYSTEM.

The copied setup command itself contains the current long-lived pairing code, so your shell may retain it in terminal history. Treat that history as a copy of the credential. Replacing the Machine's setup code or revoking the Machine invalidates it.

File permissions keep other accounts out, but they are not a sandbox from software already running as your account. Use a dedicated computer account for an unattended Machine. On macOS and Windows, signing out stops that account's background processes; unfinished work resumes after the next sign-in.

Options

| Environment variable | Meaning | | ---------------------- | ------------------------------------------------------------- | | ZIXT_HOST_TOKEN | The private code shown once on the Machines page. Required. | | ZIXT_CLOUD_URL | The Zixt gateway to connect to. Defaults to the cloud. | | ZIXT_HOST_UPDATE | off pins this Machine to the version it is running. | | ZIXT_HOST_UPDATE_URL | A registry mirror to check for releases instead of npmjs.org. |

Staying current

While it is running, the Host keeps itself up to date. It checks for a newer published release, and when it finds one it stops the work it is doing the same way Ctrl+C would — every run is unwound, and Zixt re-dispatches that work with its session resumed — then relaunches on the new version. Nothing to schedule and nothing to restart by hand. Every automatic-start installation follows the updated stable release, so a later reboot or sign-in does not revert Zixt to the version first installed.

Set ZIXT_HOST_UPDATE=off to stay on the version you started.

Run zixt-host --help for logging flags.

Teammate browsing

On first start, Zixt checks for its exact Chromium revision and downloads it automatically when needed. If that download fails, run the matching installer as the same OS user that runs Zixt:

npx -y [email protected] install chromium

On Windows, use npx.cmd instead of npx; this works from Command Prompt and from PowerShell even when its execution policy blocks npm's .ps1 shim.