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

@onmyway133/itunes-cli

v0.1.0

Published

CLI for searching and exploring iOS/macOS apps via the iTunes Search API

Downloads

66

Readme

itunes-cli

CLI for searching and exploring iOS/macOS apps via the iTunes Search API.

Install

npm install -g @onmyway133/itunes-cli
# or
bun install -g @onmyway133/itunes-cli

Commands

search

Search apps by keyword.

itunes-cli search --term "todo list"
itunes-cli search --term "weather" --country gb --limit 20
itunes-cli search --term "photo" --json

Options:

  • --term — search query (required)
  • --limit — number of results, 1–200 (default: 10)
  • --country — country code, e.g. us, gb, de (default: us)

lookup

Get full details for an app by its App Store ID.

itunes-cli lookup --id 310633997
itunes-cli lookup --id 310633997 --country gb
itunes-cli lookup --id 310633997 --json

Options:

  • --id — App Store app ID (required)

developer

List all apps published by a developer, by their artist ID.

itunes-cli developer --id 284417353
itunes-cli developer --id 284417353 --country gb
itunes-cli developer --id 284417353 --json

Options:

  • --id — developer/artist ID (required)

rss

Get top chart apps from iTunes RSS feeds.

itunes-cli rss
itunes-cli rss --feed paid --limit 25
itunes-cli rss --feed mac-grossing
itunes-cli rss --feed free --genre 6014 --limit 10

Options:

  • --feed — feed type (default: free)
    • iPhone: free paid grossing new new-free new-paid
    • iPad: ipad-free ipad-paid ipad-grossing
    • Mac: mac-free mac-paid mac-grossing
  • --limit — number of results, 1–200 (default: 10)
  • --genre — genre/category ID (e.g. 6014 for Games)

reviews

Get customer reviews for an app.

itunes-cli reviews --id 310633997
itunes-cli reviews --id 310633997 --page 2
itunes-cli reviews --id 310633997 --sort mostRecent
itunes-cli reviews --id 310633997 --json

Options:

  • --id — App Store app ID (required)
  • --page — page number (default: 1)
  • --sortmostHelpful or mostRecent (default: mostHelpful)

Global options

All commands accept:

  • --country <cc> — country code (default: us)
  • --json — output raw JSON instead of formatted table
  • -h, --help — show help
  • -v, --version — show version

Build

bun run build

License

MIT © Khoa Pham 2026