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

@hyperaide/cli

v0.1.19

Published

CLI for Hyperaide developer apps.

Readme

@hyperaide/cli

CLI for Hyperaide developer apps.

Install

pnpm add -D @hyperaide/cli

Commands

hyperaide login
hyperaide logout
hyperaide apps create --name "My App"
hyperaide apps link --slug my-app
hyperaide apps deploy

hyperaide apps create writes hyperaide.app.ts and, when run in an empty directory, also scaffolds a starter Vite + Hono Cloudflare Worker app. The starter uses Tailwind v4 plus @hyperaide/ui so the app can inherit Hyperaide styling and theme behavior out of the box. Use --no-scaffold if you only want the manifest and app record.

hyperaide apps link --slug ... writes hyperaide.app.ts for an app that already exists in Hyperaide. Use it when the app record exists but the current directory is not yet linked to it.

Config

Create a hyperaide.app.ts file:

import { defineApp } from "@hyperaide/cli/config";

export default defineApp({
  id: "app_id",
  slug: "my-app",
  name: "My App",
  framework: "cloudflare-worker",
  build: {
    command: "npm run build",
    outputDir: "dist",
    entry: "worker/index.js",
    assetsDir: "client",
  },
  database: {
    entities: [],
    links: [],
  },
});

Deploy model

hyperaide apps deploy builds your app locally, uploads the build artifact, and the Hyperaide backend publishes that Cloudflare Worker bundle into Workers for Platforms. The deploy archive is expected to contain the configured worker entry file plus the configured static assets directory inside build.outputDir.

Before the local build runs, Hyperaide injects:

  • VITE_HYPERAIDE_DATABASE_APP_ID
  • VITE_HYPERAIDE_DATABASE_TOKEN

Use those in client code when initializing @hyperaide/db.

Hyperaide app deploys now require Workers for Platforms to be configured.