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

@browsercash/chase

v1.3.10

Published

AI browser automation - tell it what you want, get structured data back

Readme

░█████╗░██╗░░██╗░█████╗░░██████╗███████╗ ██╔══██╗██║░░██║██╔══██╗██╔════╝██╔════╝ ██║░░╚═╝███████║███████║╚█████╗░█████╗░░ ██║░░██╗██╔══██║██╔══██║░╚═══██╗██╔══╝░░ ╚█████╔╝██║░░██║██║░░██║██████╔╝███████╗ ░╚════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═════╝░╚══════╝

AI browser automation. Describe it. Automate it.

Tell Chase what you want. It spins up a real browser, navigates pages, clicks buttons, solves CAPTCHAs, and returns structured JSON.

Quick Start

npm install -g @browsercash/chase
export BROWSER_CASH_API_KEY="your-key"   # https://browser.cash
chase automate "Get the top 5 stories from Hacker News with title, points, and URL"
{
  "success": true,
  "result": {
    "stories": [
      { "title": "Show HN: ...", "points": 342, "url": "https://..." }
    ]
  }
}

Commands

# One-off automation
chase automate "Find AirPods Pro price on Amazon"
chase automate "Get 5 homes in Austin TX under 400k" --country US

# Generate reusable scripts
chase generate "Scrape today's deals from slickdeals.net"
chase scripts                    # List saved scripts
chase run script-abc123          # Run a saved script

# Task management
chase tasks                      # List recent tasks
chase task task-xyz789           # Get task details

Options

| Flag | Description | |------|-------------| | --country <code> | Browser geo-location (US, CA, ...) | | --type <type> | Node type: hosted, consumer_distributed | | --adblock | Block ads | | --captcha | Auto-solve CAPTCHAs | | --json | JSON output only (default) | | --pretty | Human-readable output | | --verbose | Show debug logs | | --max-turns <n> | Max Claude turns (default: 30) |

Integrations

Claude Code (Skill)

curl -fsSL https://raw.githubusercontent.com/alexander-spring/chase/main/skill/install.sh | bash

Then ask Claude: "Use chase to get the top posts from Reddit r/programming"

Claude Desktop / Cursor (MCP)

Add to your MCP config:

{
  "mcpServers": {
    "chase": {
      "transport": "http",
      "url": "https://chase-api-264851422957.us-central1.run.app/mcp",
      "headers": { "x-api-key": "YOUR_API_KEY" }
    }
  }
}

API

Base: https://chase-api-264851422957.us-central1.run.app

| Endpoint | Method | Description | |----------|--------|-------------| | /automate/stream | POST | Run a task, get results (SSE) | | /generate/stream | POST | Generate a reusable script (SSE) | | /scripts | GET | List saved scripts | | /scripts/:id | GET | Get script details | | /scripts/:id/run | POST | Execute a saved script (SSE) | | /tasks | GET | List recent tasks | | /tasks/:id | GET | Get task status/result | | /health | GET | Health check | | /mcp | POST | MCP HTTP transport |

curl -N -X POST https://chase-api-264851422957.us-central1.run.app/automate/stream \
  -H "Content-Type: application/json" \
  -d '{"task": "Get the title of example.com", "browserCashApiKey": "your-key"}'

How It Works

  1. Chase spins up a real browser via Browser.cash
  2. Claude navigates, clicks, fills forms, waits for content
  3. Structured JSON is extracted and returned
  4. Browser session is cleaned up automatically

Self-Hosting

git clone https://github.com/alexander-spring/chase.git && cd chase
npm install && npm run build
ANTHROPIC_API_KEY=sk-... npm run start:server

# Or deploy to Cloud Run
gcloud builds submit --config cloudbuild.yaml

License

MIT