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

spacex-launches-cli

v0.3.0

Published

CLI tool for tracking upcoming SpaceX launches

Readme

spacex-launches-cli

CLI tool for tracking upcoming SpaceX launches.

Quick Start

npx spacex-launches-cli next

Installation

# Run directly with npx (no install needed)
npx spacex-launches-cli <command>

# Or install globally
npm install -g spacex-launches-cli
spacex-launches <command>

Requires Node.js 18 or later.

Commands

spacex-launches next

Show the next upcoming SpaceX launch with a live countdown.

spacex-launches next
spacex-launches --local next   # times in your local timezone

spacex-launches list

List upcoming launches in a table.

spacex-launches list
spacex-launches list --limit 5

| Option | Description | | ---------------------- | ---------------------------------------- | | -l, --limit <number> | Number of launches to show (default: 10) |

spacex-launches detail <id>

Show full details for a specific launch.

spacex-launches detail <id>

| Argument | Description | | -------- | ---------------------------------------------------------- | | id | Launch ID or slug (find these with spacex-launches list) |

spacex-launches browse

Interactively browse upcoming launches in a full-screen TUI. Scroll through the list and press Enter to view details for any launch.

spacex-launches browse

| Key | Action | | ------------------- | ------------------- | | Up / k | Move selection up | | Down / j | Move selection down | | Enter | View launch details | | Esc / Backspace | Back to list | | PgUp / PgDn | Scroll by page | | q | Quit |

Global Options

These options work with any command:

| Option | Description | | --------------- | ------------------------------------------------------- | | --local | Show launch times in your local timezone instead of UTC | | -V, --version | Show version number | | -h, --help | Show help |

How It Works

Launch data comes from Launch Library 2 by The Space Devs. A GitHub Action fetches data periodically and caches it as static JSON on GitHub Pages. The CLI reads this cached data — no API keys or accounts needed.

Support The Space Devs

This project relies on The Space Devs' Launch Library 2 API. Consider supporting their work on Patreon.

Development

npm install        # install dependencies
npm run build      # build CLI to dist/
npm test           # run tests
npm run lint       # check linting and formatting

Run the CLI during development without building:

npx tsx src/cli/index.ts next
npx tsx src/cli/index.ts list
npx tsx src/cli/index.ts detail <id>

License

MIT