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

@creem_io/cli

v0.2.1

Published

Official CLI for Creem - the Stripe alternative for SaaS

Readme

Creem CLI

The official command-line tool for Creem — the Merchant of Record for SaaS and digital businesses.

Manage products, customers, subscriptions, checkouts, transactions, and discounts from your terminal.

Installation

Homebrew (macOS/Linux)

brew tap armitage-labs/creem
brew install creem

npm (Global)

npm install -g @creem_io/cli

npx (No Install)

npx @creem_io/cli <command>

Quick Start

# Authenticate with your API key
creem login

# Check your auth status
creem whoami

# Switch to live mode
creem config set environment live

Get your API key from the Creem Dashboard.

  • Test keys start with creem_test_
  • Live keys start with creem_

Commands

Authentication

# Login with API key (interactive)
creem login

# Login with API key (non-interactive)
creem login --api-key creem_xxxxx

# Check current authentication
creem whoami

# Logout
creem logout

Configuration

# Show all config
creem config show

# Get a specific value
creem config get environment

# Set a value
creem config set environment live
creem config set output_format json

# List available config keys
creem config list

Resources

  • creem products — list, create, get, update products
  • creem customers — list, get, create customers and open billing portals
  • creem subscriptions — list, get, cancel, pause, resume, upgrade, update
  • creem checkouts — create and get checkout sessions
  • creem transactions — list and inspect transactions
  • creem discounts — create and list discount codes
  • creem migrate — migrate from LemonSqueezy to Creem

Run creem <command> --help for details on any command.

Global Options

  • --json — Output in JSON format (works with most commands)
  • --help — Show help for any command
  • --version — Show CLI version

Configuration

Config is stored at ~/.creem/config.json:

{
  "api_key": "creem_xxxxx",
  "environment": "test",
  "output_format": "table"
}

Environment

  • test — Uses https://test-api.creem.io (default)
  • live — Uses https://api.creem.io

Development

This package lives inside the armitage-labs/creem monorepo and uses pnpm + turbo.

# From the repo root
pnpm install
pnpm --filter @creem_io/cli build

# Or from this directory
cd packages/cli
pnpm build      # build once
pnpm dev        # watch mode

Run the locally built binary:

node packages/cli/dist/index.js <command>

Optional: direnv

A .envrc is included that adds packages/cli/bin to your PATH, so after building you can just run creem:

brew install direnv       # if not already installed
cd packages/cli
direnv allow
creem whoami

Contributing

Contributions are welcome! Please open an issue or pull request at github.com/armitage-labs/creem.

License

MIT