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

@cirrustech/helix

v0.3.0

Published

Ship Workers and Containers to Cirrus Host from the command line.

Downloads

404

Readme

helix

The official CLI for Cirrus Host — deploy Workers and Containers in seconds, with built-in databases, storage, and KV.

Install

npm install -g @cirrustech/helix

Requires Node.js 18+.

Quick start

Worker:

helix login
helix init my-project
cd main && helix deploy

Container (existing public image — Plex, Postgres, n8n, nginx, …):

helix init --container plex \
  --image lscr.io/linuxserver/plex:latest \
  --port 32400
cd main && helix deploy

Your container is live at https://main.plex.helx.dev.

Container (your own Dockerfile):

helix init --container my-project
cd main
# build & push your image, then set "image" in helix.json
helix deploy

Commands

| Command | Description | |---|---| | helix login | Device-code login (opens browser) | | helix logout | Forget local credentials | | helix whoami | Show signed-in user | | helix init [name] | Scaffold a new app (-c for container) | | helix deploy [-m msg] | Build and ship to the platform | | helix list [project] | List projects or deployments | | helix logs | Stream live logs | | helix open | Open the deployment URL in your browser | | helix delete [name] | Delete a deployment | | helix env list\|set\|unset | Manage environment variables | | helix secrets list\|set\|rm | Manage encrypted secrets | | helix domain list\|add\|verify\|rm | Manage custom domains | | helix project list\|create | Manage projects | | helix members list\|invite\|remove | Manage project collaborators | | helix invites list\|accept\|decline | View and respond to invites | | helix notifications list\|read | In-app notifications | | helix db create\|list\|rm\|execute | Dedicated databases (SQLite) | | helix bucket create\|list\|rm | Object-storage buckets | | helix kv create\|list\|rm | Key-value stores | | helix bindings list\|add\|rm | Attach resources to a deployment | | helix usage | Show period usage |

Scope flags

Every command accepts these flags to target a specific project or deployment without needing to be inside the project directory:

-p, --project <slug>     Target project
-n, --name <name>        Target deployment
--panel <host>           Use a different panel domain (white-label)

When omitted, helix reads from helix.json in the current directory.

helix logs -p my-project -n api
helix env set DEBUG=1 -p my-project -n api

Documentation

cirrus-host.com/docs

License

MIT