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

@kubeorch/cli

v0.0.5

Published

OrchCLI - KubeOrch Developer CLI

Readme

OrchCLI - KubeOrch Developer CLI

Apache 2.0 License CNCF Aspiring

OrchCLI is a command-line tool for developing with the KubeOrch platform. It streamlines local development, testing, and contribution workflows for cloud-native applications.

Installation

Quick Install

# Install latest version
curl -sfL https://raw.githubusercontent.com/KubeOrch/cli/main/install.sh | sh

# Or with wget
wget -qO- https://raw.githubusercontent.com/KubeOrch/cli/main/install.sh | sh

# Install specific version
curl -sfL https://raw.githubusercontent.com/KubeOrch/cli/main/install.sh | ORCHCLI_VERSION=v0.0.2 sh

# Install to custom directory
curl -sfL https://raw.githubusercontent.com/KubeOrch/cli/main/install.sh | ORCHCLI_INSTALL_DIR=~/.local/bin sh

# Uninstall
curl -sfL https://raw.githubusercontent.com/KubeOrch/cli/main/install.sh | sh -s -- --uninstall

Via NPM

npm install -g @kubeorch/cli

Via Go

go install github.com/kubeorch/cli@latest

From Source

git clone https://github.com/KubeOrch/cli
cd cli
make install

Features

  • Concurrent Operations - Fast parallel execution for cloning, pulling, and health checks
  • Safe Configuration Management - File locking prevents corruption during concurrent access
  • Multiple Project Support - Manage multiple KubeOrch projects seamlessly
  • Auto-detection - Automatically determines development mode based on cloned repositories
  • Hot Reload - All development modes support hot reload for rapid iteration

Commands

| Command | Description | |---------|-------------| | orchcli init | Initialize environment | | orchcli start | Start services | | orchcli stop | Stop services | | orchcli restart [service] | Restart services | | orchcli logs | View service logs | | orchcli status | Check service status | | orchcli exec <service> [command] | Execute command in service container | | orchcli debug | Debug service connectivity |

Common Flags

  • orchcli start -d - Run services in background
  • orchcli stop -v - Remove volumes when stopping
  • orchcli logs -f - Follow log output
  • orchcli logs --tail 50 - Show last 50 lines
  • orchcli init --fork-ui - Clone UI repository
  • orchcli init --fork-core - Clone Core repository

Quick Start

Production Mode

# Initialize and start services
orchcli init
orchcli start -d

# Access application
# UI: http://localhost:3001
# API: http://localhost:3000

# View logs
orchcli logs -f

# Stop services
orchcli stop

Development Mode

# Clone repositories for development
orchcli init --fork-ui --fork-core

# Start PostgreSQL
orchcli start -d

# Start Core (Terminal 1)
cd core && air

# Start UI (Terminal 2)  
cd ui && npm run dev

# Access: UI at localhost:3001, API at localhost:3000

Frontend Development Only

# Clone UI repository
orchcli init --fork-ui

# Start backend services in Docker
orchcli start -d

# Start UI development server
cd ui && npm run dev

Backend Development Only

# Clone Core repository
orchcli init --fork-core

# Start all services (Core with hot reload)
orchcli start -d

# Edit Core files locally - changes auto-reload
# Access: UI at localhost:3001, API at localhost:3000

Documentation

License

Apache-2.0