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

addfox

v0.1.1-beta.11

Published

Build tool for browser extensions — one install, addfox dev / build

Readme


Features

  • 🔥 Fast dev mode and hot reloadaddfox dev runs watch, rebuilds on change, and hot-reloads the extension in the browser; the browser launches automatically; same bundle as production.
  • 📦 Auto-generated zip — After addfox build, output is packed into a zip under .addfox by default; one command for both folder and store-ready zip.
  • 📁 File-based entries — Entries are discovered from app/ layout (background, content, popup, options, sidepanel, devtools); override or add custom entries in config when needed.
  • 🌐 Many Chromium browsers and Firefox — Use -b chrome|edge|brave|vivaldi|opera|firefox|... to target Chrome, Edge, Brave, Vivaldi, Opera, Arc, Yandex, or Firefox; manifest can be split per browser.
  • ⚛️ Framework-agnostic — Vue, React, Svelte, Solid, or vanilla; TypeScript or JavaScript; choose in scaffold or add the plugin you need.
  • 🤖 AI-friendly error output — Enable --debug for a dev-only error panel with per-entry errors, Copy prompt, Ask ChatGPT, and Ask Cursor in one click.
  • 🧪 Rstest support — Run addfox test for unit and e2e tests; arguments are forwarded to Rstest.
  • 📊 Rsdoctor bundle analysis — Add --report to build or dev to open the Rsdoctor analysis report after the build.
  • 🧩 Full Skills support — Install addfox/skills via create-addfox-app or skills add; AI workflow modules in .agents/skills/.
  • 🔐 Env variable support.env is loaded; envPrefix controls which vars are exposed to the extension (e.g. PUBLIC_).

Install & use

New project:

pnpm create addfox-app
# or: npx create-addfox-app

Choose framework (Vanilla / Vue / React / Preact / Svelte / Solid), language, package manager, entries, and optional Skills. A full layout and addfox.config are generated.

Existing project:

pnpm add -D addfox

Add addfox.config.ts (or .js / .mjs) in the project root and entries under app/ (or appDir). Then:

  • addfox dev — dev with watch + HMR
  • addfox build — output to .addfox/extension (and optional zip)

Use -b chrome or -b firefox to target a browser.


Full docs, config reference, and examples: https://addfox.dev
Skills (AI workflow modules): https://github.com/addfox/skills