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

@zoralabs/cli

v1.0.1

Published

Zora CLI tool

Readme

Zora CLI

Beta — This package is in pre-release. Commands, flags, and output formats may change between versions without notice.

A command-line tool for interacting with the Zora protocol. Explore coins, check prices, manage wallets, and trade — all from the terminal.

Install

Requires Node.js 20+.

npm install -g @zoralabs/cli

Quick start

# Guided first-time setup — wallet, API key, and deposit instructions
zora setup

# Browse trending coins
zora explore

# Look up a specific coin
zora get <address-or-name>

# Check price history
zora price-history <address-or-name>

Commands

All commands support --json for machine-readable output. Commands with live data (explore, balance, profile) also support --live (interactive, default) and --static (snapshot). Use --refresh <seconds> to set the auto-refresh interval in --live mode.

| Command | Description | Wallet required | | --------------- | --------------------------------------------------------- | --------------- | | setup | Guided first-time setup (wallet + API key + deposit info) | — | | explore | Browse top, new, and highest volume coins | No | | get | Look up a coin by address or name | No | | price-history | Display price history for a coin | No | | auth | Configure or check API key status | No | | profile | View creator or user profiles | No | | buy | Buy a coin | Yes | | sell | Sell a coin | Yes | | balance | Show wallet balances (ETH, USDC, ZORA) and coin positions | Yes | | wallet | Show wallet address, export key, or configure wallet | Yes | | send | Send tokens to another address | Yes |

Run zora --help or zora <command> --help for detailed usage.

Setup

zora setup walks through three steps: wallet configuration, API key (optional), and deposit instructions. It is re-runnable — existing configuration is detected and can be kept or overwritten.

zora setup            # interactive 3-step flow
zora setup --create   # skip wallet prompt, generate a new key
zora setup --yes      # non-interactive, accept all defaults
zora setup --force    # overwrite existing wallet and API key

The private key is stored locally at ~/.config/zora/wallet.json with restricted permissions. ZORA_PRIVATE_KEY and ZORA_API_KEY environment variables take precedence over saved config files.

Advanced

To configure wallet or API key individually (without running the full setup flow). All commands work without an API key but may be rate-limited:

  • zora wallet configure — create or import a wallet (--create, --force)
  • zora auth configure — save an API key; zora auth status — check current config

Documentation

Full documentation is available at cli.zora.com.

Feedback

Reach out at x.com/zorasupport or support.zora.co.