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

llmcc-cli

v0.2.65

Published

llmcc brings multi-depth architecture graphs for code understanding and generation.

Readme

npm Package Distribution

This directory contains the npm package configuration for distributing llmcc via npm.

Installation

npm install -g llmcc

How It Works

  1. On npm install, the postinstall script downloads the pre-built binary for your platform from GitHub releases
  2. The shell wrapper (bin/llmcc) detects your OS/architecture and executes the correct binary

Package Structure

npm/
├── package.json          # Main package configuration
├── bin/
│   ├── llmcc            # Shell wrapper (Unix)
│   └── llmcc.cmd        # Batch wrapper (Windows)
├── scripts/
│   └── postinstall.js   # Downloads binary from GitHub releases
└── README.md

Supported Platforms

| Platform | Binary Name | |----------|-------------| | macOS ARM64 (Apple Silicon) | llmcc-darwin-arm64 | | macOS x64 (Intel) | llmcc-darwin-x64 | | Linux ARM64 | llmcc-linux-arm64 | | Linux x64 | llmcc-linux-x64 | | Windows x64 | llmcc-win32-x64.exe |

Publishing

Prerequisites

  1. Build binaries for all platforms (via GitHub Actions)
  2. Create a GitHub release with binaries attached
  3. npm token configured

Release Process

  1. Update version in Cargo.toml and npm/package.json
  2. Build binaries: just npm-build
  3. Create GitHub release v0.2.51 with binaries attached
  4. Publish to npm:
    cd npm
    npm publish

GitHub Actions (Automated)

The workflow at .github/workflows/npm-publish.yml will:

  1. Build binaries for all platforms
  2. Create GitHub release with binaries
  3. Publish to npm

Local Development

# Build for current platform
cargo build --release

# Copy binary to npm/bin for testing
cp target/release/llmcc npm/bin/llmcc-$(uname -s | tr '[:upper:]' '[:lower:]')-$(uname -m | sed 's/x86_64/x64/' | sed 's/aarch64/arm64/')

# Test locally
cd npm && npm link
llmcc --help