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

cc-pika-install

v1.0.9

Published

Universal Claude Code installer for all platforms

Readme

cc-pika-install

One-command installer for Claude Code with automatic custom configuration.

Before You Start

You need Node.js and Git installed on your computer first. If you've never installed them before, follow the full walkthrough in PREREQUISITES.md (5 minutes, beginner-friendly with screenshots-worth-of-detail).

Quick check — open a terminal (Command Prompt on Windows, Terminal on Mac) and run:

node -v
git --version

If both commands print a version number (e.g. v20.11.1 and git version 2.43.0), you're ready. If either says "not recognized" or "command not found", go to PREREQUISITES.md first.

TL;DR for those in a hurry:

  1. Install Node.js LTS from https://nodejs.org (just click Next-Next-Finish)
  2. Install Git from https://git-scm.com/downloads (same — Next-Next-Finish)
  3. Restart your terminal, then continue to Quick Start below.

Quick Start

Make sure you've completed Before You Startnode -v and git --version should both work.

Recommended (Node.js + Git already installed)

npx cc-pika-install

On Linux/macOS, you may need sudo:

sudo npx cc-pika-install

Fallback (auto-installs Node.js + Git if missing)

Use this if you skipped the prerequisites and want the setup script to install everything for you.

Linux/macOS:

curl -fsSL https://raw.githubusercontent.com/pikachuladiva-rgb/cc-pika-install/main/setup.sh | bash

Windows: Open PowerShell as Administrator and run:

Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/pikachuladiva-rgb/cc-pika-install/main/setup.bat' -OutFile "$env:TEMP\setup.bat"; Start-Process "$env:TEMP\setup.bat" -Verb RunAs

Note: the fallback path is less reliable on macOS (it requires Homebrew) and may need a terminal restart on Windows. The manual prerequisites route is more robust.

What It Does

This installer automates the entire Claude Code setup process:

  1. ✅ Installs Claude Code globally via npm
  2. ✅ Prompts you for your API Base URL
  3. ✅ Prompts you for your API Key
  4. ✅ Creates ~/.claude/settings.json with your configuration
  5. ✅ Configures permissions and skips onboarding

After installation completes, simply run claude to start using Claude Code.

Requirements

  • Node.js 18 or newer - Download here
  • npm (comes with Node.js)
  • sudo access (on Linux/macOS for global installation)

Step-by-Step Usage

  1. Run the installer:

    npx cc-pika-install
  2. Enter your API Base URL when prompted:

    Enter API Base URL: https://your-api-endpoint.com
  3. Enter your API Key when prompted:

    Enter your API key: sk-your-api-key-here
  4. Wait for installation to complete:

    Installing Claude Code via npm...
    Configuring Claude Code...
    Configuration complete! Claude Code is ready to use.
  5. Start using Claude Code:

    claude

Configuration

The installer creates ~/.claude/settings.json with:

  • Custom API endpoint (ANTHROPIC_BASE_URL)
  • Your API authentication token
  • Bypass permissions mode enabled
  • Onboarding steps skipped

Uninstallation

One-liner (recommended):

npx cc-pika-uninstall

On Linux/macOS you may need sudo:

sudo npx cc-pika-uninstall

This removes Claude Code (@anthropic-ai/claude-code) and the ~/.claude config directory. Node.js and Git are kept.

Troubleshooting

Permission denied error:

  • Use sudo npx cc-pika-install on Linux/macOS
  • Run as Administrator on Windows

Node.js not found:

  • Install Node.js 18+ from https://nodejs.org/

License

MIT