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

reel-browser

v0.1.8

Published

Bridge server and CLI for the Reel browser automation tool

Downloads

492

Readme

reel-browser

CLI and bridge server for the Reel browser automation tool.

Installation

npm install -g reel-browser

Commands

reel start                              # Start bridge server in background
reel stop                               # Stop bridge server
reel status                             # Check server status and extension connection
reel run list                           # List saved flows
reel run run --domain <d> --name <n>    # Run a saved flow
reel gen --goal "..."                   # Generate a flow with AI (requires ANTHROPIC_API_KEY)
reel install-skill                      # Install reel-browser skill for Claude Code

Files

| File | Description | |------|-------------| | cli.js | CLI entry point — routes subcommands | | daemon.js | Background server management (PID file at ~/.reel/server.pid) | | server.js | HTTP queue server on port 9999 | | flowrun.js | Flow listing and execution | | flowgen.js | AI flow generation via Claude API | | skills/reel-browser/SKILL.md | Claude Code skill (copied by reel install-skill) |

Bridge Server API

The server runs at http://localhost:9999 and acts as a command queue between the Chrome extension and external agents.

| Endpoint | Method | Description | |----------|--------|-------------| | /enqueue | POST | Enqueue a command | | /next-cmd | GET | Extension polls for next command | | /result | POST | Store execution result | | /wait-result/:id | GET | Long-poll for result | | /status | GET | Check extension connection |

Supported Actions

| Action | Description | |--------|-------------| | navigate | Navigate to URL | | click | Click an element | | fill | Fill an input field | | select | Select a dropdown option | | waitForSelector | Wait for an element | | evaluate | Execute JavaScript | | scan_page | Scan page for interactive elements | | save_flow | Save a flow to extension storage | | list_flows | List saved flows | | run_flow | Run a flow (auto load/save variables) | | get_vars | Get saved variable values for a flow | | save_vars | Save variable values for a flow |

Development

npm test

Flow Storage

Flows are stored as JSON files at ~/.flows/{domain}/{name}.flow.json.
Variable values persist in the extension's chrome.storage.local across browser restarts.