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

devhelm

v0.1.4

Published

DevHelm CLI — manage monitors, deployments, and infrastructure as code

Readme

DevHelm CLI

The official command-line interface for DevHelm — manage uptime monitors, incidents, alert channels, and infrastructure as code from your terminal.

  • Monitoring as code — define monitors in devhelm.yml and deploy them from CI or your terminal
  • Full API coverage — monitors, incidents, alert channels, notification policies, environments, secrets, tags, resource groups, webhooks, dependencies, and status data
  • Multiple output formats — table, JSON, or YAML for easy scripting and piping
  • Auth context model — switch between environments with named contexts, or use DEVHELM_API_TOKEN for CI
  • Works with AI agents — pair with the DevHelm MCP server or Agent Skill for AI-driven monitoring workflows

Quick Example

# Authenticate
$ devhelm auth login --token sk_live_...
Authenticated as [email protected]
Context 'default' saved to ~/.devhelm/contexts.json

# List your monitors
$ devhelm monitors list
┌────┬─────────────────────┬──────┬────────┬──────────────────────────┬──────────┐
│ ID │ NAME                │ TYPE │ STATUS │ URL                      │ INTERVAL │
├────┼─────────────────────┼──────┼────────┼──────────────────────────┼──────────┤
│ 1  │ Website Health      │ HTTP │ UP     │ https://example.com      │ 60       │
│ 2  │ API Endpoint        │ HTTP │ UP     │ https://api.example.com  │ 30       │
│ 3  │ DNS Check           │ DNS  │ UP     │ example.com              │ 300      │
└────┴─────────────────────┴──────┴────────┴──────────────────────────┴──────────┘

# Create a monitor
$ devhelm monitors create --name "Checkout API" --type HTTP --url https://api.example.com/checkout --interval 30

# Scaffold a config file and validate it
$ devhelm init
Created devhelm.yml

$ devhelm validate
devhelm.yml: valid (3 monitors)

Installation

npm install -g devhelm

Requires Node.js 18+.

Authentication

The CLI resolves credentials in this order:

  1. --api-token flag (highest priority)
  2. DEVHELM_API_TOKEN environment variable
  3. Active auth context from ~/.devhelm/contexts.json
# Interactive login
devhelm auth login

# Or set a token directly
export DEVHELM_API_TOKEN=sk_live_...

# Manage multiple environments
devhelm auth context create staging --api-url https://staging-api.devhelm.io --token sk_test_...
devhelm auth context use staging
devhelm auth context list

Commands

Core Workflow

| Command | Description | |---------|-------------| | devhelm init | Scaffold a devhelm.yml configuration file | | devhelm validate [file] | Validate a configuration file | | devhelm status | Show dashboard overview | | devhelm version | Print CLI version |

Resources

Every resource supports list, get, create, update, and delete subcommands. Add --output json for machine-readable output.

| Resource | Commands | API Path | |----------|----------|----------| | monitors | list, get, create, update, delete, pause, resume, test, results | /api/v1/monitors | | incidents | list, get, create, update, delete, resolve | /api/v1/incidents | | alert-channels | list, get, create, update, delete, test | /api/v1/alert-channels | | notification-policies | list, get, create, update, delete, test | /api/v1/notification-policies | | environments | list, get, create, update, delete | /api/v1/environments | | secrets | list, create, update, delete | /api/v1/secrets | | tags | list, get, create, update, delete | /api/v1/tags | | resource-groups | list, get, create, update, delete | /api/v1/resource-groups | | webhooks | list, get, create, update, delete, test | /api/v1/webhooks | | api-keys | list, get, create, delete, revoke | /api/v1/api-keys | | dependencies | list, get, track, delete | /api/v1/service-subscriptions | | data services | status, uptime | /api/v1/services |

Global Flags

--output, -o   Output format: table, json, yaml (default: table)
--api-url      Override API base URL
--api-token    Override API token
--verbose, -v  Show verbose output

AI Agents & Coding Assistants

DevHelm is designed to work seamlessly with AI coding agents:

  • MCP Server — full API access from Cursor, Claude Desktop, or any MCP-compatible client
  • Agent Skill — structured instructions for Claude Code, Cursor, Codex, and other AI agents
# Install the MCP server
npm install -g @devhelm/mcp-server

# Or add the skill to your project
npx skills add devhelmhq/skill

Documentation

Full documentation at docs.devhelm.io.

Need Help?

Development

git clone https://github.com/devhelmhq/cli.git
cd cli
npm install
npm run build

# Run in dev mode
node bin/dev.js version
node bin/dev.js monitors list

# Checks
npm run lint        # ESLint
npm run typecheck   # TypeScript
npm test            # Vitest

License

MIT