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

@polargrid/cli

v0.1.0

Published

PolarGrid CLI - Command-line interface for PolarGrid Edge AI Infrastructure

Readme

PolarGrid CLI

Command-line interface for PolarGrid Edge AI Infrastructure.

Installation

npm install -g @polargrid/cli

Quick Start

# Login to PolarGrid
polargrid login

# List your organizations
polargrid orgs list

# Create an API key
polargrid keys create my-app-key

# Test inference
polargrid test inference --region us-east --prompt "Hello world"

Commands

Authentication

polargrid login              # Browser OAuth flow
polargrid login --headless   # API key authentication (for CI/CD)
polargrid logout             # Clear stored credentials
polargrid whoami             # Show current user and organization

Organizations

polargrid orgs list              # List organizations you belong to
polargrid orgs switch <org_id>   # Switch to a different organization
polargrid orgs current           # Show current organization

API Keys

polargrid keys list              # List API keys
polargrid keys create <name>     # Create a new API key
  --permissions <level>          # read-only, read-write, or admin
  --project <id>                 # Scope to a specific project
polargrid keys revoke <key_id>   # Revoke an API key

Regions

polargrid regions list           # List available regions with latency
polargrid regions ping           # Ping all regions, show RTT

Testing

polargrid test                   # Health check (default)
polargrid test health            # Check edge infrastructure health
  --region <region>              # Specific region or all
polargrid test inference         # Run a quick inference test
  --region <region>              # Required: target region
  --model <model>                # Model to use (default: gpt2)
  --prompt <prompt>              # Prompt to send

Configuration

polargrid config list            # Show current config
polargrid config get <key>       # Get a config value
polargrid config set <key> <val> # Set a config value
polargrid config unset <key>     # Remove a config value

Config options:

  • default_region - Default edge region for requests
  • output_format - Output format: json, table, or plain
  • api_base_url - Override API base URL

CI/CD Usage

For CI/CD pipelines, use the --headless flag with an API key:

# Set API key as environment variable
export POLARGRID_API_KEY="pg_your_api_key_here"

# Login in headless mode
polargrid login --headless

# Or pass the key directly
polargrid login --headless --api-key "pg_your_api_key_here"

Configuration Files

The CLI stores configuration in ~/.polargrid/:

  • credentials.json - Authentication tokens (mode 0600)
  • config.json - CLI configuration

Development

# Install dependencies
npm install

# Build
npm run build

# Run locally
npm start -- --help

# Watch mode
npm run dev

License

MIT