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

hypha-compute

v0.1.0

Published

CLI for deploying and managing compute apps on Hypha Cloud — a Ray alternative with native multi-tenancy

Downloads

14

Readme

hypha-compute

CLI for deploying and managing compute apps on Hypha Cloud — a Ray alternative with native multi-tenancy.

Installation

npm install -g hypha-compute

Or use directly with npx:

npx hypha-compute --help

Quick Start

# Set your credentials
export HYPHA_TOKEN="your-token"
export HYPHA_WORKSPACE="your-workspace"

# Deploy a Python app
hypha-compute deploy app.py

# Deploy with autoscaling
hypha-compute deploy model.py --min-replicas 1 --max-replicas 10

# List running apps
hypha-compute list

# View logs
hypha-compute logs my-app

# Stop an app
hypha-compute stop my-app

Commands

| Command | Description | |---------|-------------| | deploy <file> | Deploy a .py file or .json manifest | | list | List running compute apps | | status <app-id> | Show detailed app info | | logs <app-id> | View logs for a running app | | stop <app-id> | Stop a running app | | metrics <app-id> | Show deployment metrics | | info | Show connection and worker info |

Deploy

Deploy a Python file directly:

hypha-compute deploy app.py --app-id my-app

The CLI auto-generates a compute-app manifest. If a requirements.txt exists in the same directory, dependencies are included automatically.

Deploy from a JSON manifest for full control:

{
  "type": "compute-app",
  "name": "my-model",
  "entry_point": "main.py",
  "requirements": ["torch", "transformers"],
  "autoscaling": {
    "enabled": true,
    "min_replicas": 1,
    "max_replicas": 5,
    "target_ongoing_requests": 10
  }
}
hypha-compute deploy manifest.json

Options

Global Options

| Flag | Env Var | Description | |------|---------|-------------| | -s, --server-url | HYPHA_SERVER_URL | Hypha server URL (default: https://hypha.aicell.io) | | -w, --workspace | HYPHA_WORKSPACE | Workspace name (default: public) | | -t, --token | HYPHA_TOKEN | Auth token |

Deploy Options

| Flag | Description | |------|-------------| | --app-id <id> | Override app ID | | --name <name> | Override app name | | --min-replicas <n> | Minimum replicas (enables autoscaling) | | --max-replicas <n> | Maximum replicas (enables autoscaling) | | --no-start | Install only, don't start | | --wait-for-service <id> | Wait for service registration (e.g., default) | | --timeout <seconds> | Start timeout (default: 180) |

Python Library

The Python library provides the full compute primitives (autoscaler, P2C router, replica state machine, DAG executor, object store). Install with:

pip install hypha-compute

See the GitHub repository for Python API documentation.

License

MIT