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

voxalsh

v0.1.4

Published

Voxal CLI for creating and deploying interactive terminal apps over SSH

Readme

voxal

The developer CLI for building and deploying interactive terminal apps that anyone can reach with ssh <app>@<host>. You write a small JavaScript app against @voxalsh/sdk; voxal deploy bundles it, validates that it boots, and ships it. No shell is ever exposed — each SSH session is wired to your sandboxed app.

Install

npm install -g voxalsh

This installs the voxal command (and a voxalsh alias). You can also run it without installing: npx voxalsh login. Requires Node.js >= 20.

The CLI validates your bundle in a real isolated-vm sandbox before upload — the same boundary the server runs apps in. isolated-vm is a native module and therefore an optional dependency: if it can't be installed or built on your machine, the CLI still installs and works; it just falls back to a lighter, non-executing bundle check and the server does the full validation on deploy.

Quick start

voxal init myapp            # connect/create a project, then scaffold ./myapp
cd myapp && npm i
voxal dev                   # preview locally, reload on save (Ctrl-C to stop)
voxal deploy                # bundle, validate, and ship it
ssh myapp@<host> -p 2222    # reach your running app

voxal init runs an interactive menu to connect an existing project or create a new one, writes the result into voxal.json, and scaffolds the app. If you aren't logged in yet, it offers to log you in inline (the browser device flow) and then continues. From then on voxal deploy is non-interactive — it reads the linked project from voxal.json. If you ever run voxal deploy in a directory without a linked voxal.json, it runs the same connect/create menu before deploying.

Commands

| Command | Description | | --- | --- | | voxal init [name] | Connect/create a project (interactive menu; offers inline login if needed), then scaffold the app in ./<name> with the linked project written into voxal.json. | | voxal dev [dir] | Run the app locally against your own terminal — no server, no deploy. Dev-builds (unminified, sourcemapped), wires the host globals to your TTY, and reloads on save. Press q (or Ctrl-C) to stop. Needs a TTY. | | voxal build [dir] [--out <file>] | Produce the exact production bundle deploy would upload, validate it boots, and write it to dist/<name>.js (or --out). Offline — no login. | | voxal login [--no-browser] | Log in via the browser. --no-browser prints the URL instead of opening it (handy on headless boxes). | | voxal logout | Log out and revoke this machine's token server-side. | | voxal whoami | Show the signed-in account, plan, and projects. | | voxal deploy [dir] [--name <n>] | Resolve a project (from voxal.json/--name, else the connect/create menu), bundle + validate the app, and deploy. Offers inline login if needed. | | voxal projects [rm <name>] | List your projects, or delete one. |

Global flags

| Flag | Meaning | | --- | --- | | --dashboard <url> | Control-plane / login URL (default https://voxal.sh; the /api/cli/* calls go to https://app.voxal.sh). For local dev: --dashboard http://localhost:5173. | | --host <url> | Deploy-server URL (default https://api.voxal.sh). For local dev: --host http://localhost:8787. | | --token <t> | Use a raw token instead of the saved login (skips the account/project flow). |

These are saved into ~/.voxal/config.json by voxal login, so you only pass them once; override per-invocation with the flags (or the VOXAL_DASHBOARD / VOXAL_API / VOXAL_HOST env vars). URLs must be http(s); anything else is rejected before a request is made.

Configuration & security

  • Your token is stored in ~/.voxal/config.json. The CLI enforces 0700 on the directory and 0600 on the file (re-applied on every write), so a leaked token isn't world-readable.
  • voxal logout revokes the token server-side, so a stolen config can't be reused.
  • Every network call is bounded by a timeout, so a stalled server can't hang the CLI.
  • A failed request names the host and the reason (ENOTFOUND/ECONNREFUSED/timeout) with a fix hint, instead of a bare fetch failed — e.g. pointing you at --dashboard http://localhost:5173 when DNS fails, or cd dashboard && npm run dev when nothing is listening locally (the common "saved local-dev config, server not running" case).
  • voxal deploy sends a sha256 of the bundle; the server and the bundle store both re-verify it, so the bundle can't be tampered with in flight or at rest.
  • Bundles are capped at 5 MiB (warning past 4 MiB), matching the server.

License

MIT