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

allsearch-open

v0.1.4

Published

Track how AI chatbots talk about your brand. Runs entirely on your own machine, against your own AI provider keys.

Readme

AllSearch

AllSearch tracks how often a Brand is mentioned and cited by AI chatbots, then turns gaps into content recommendations. It is single-user and local-first: your data stays in a SQLite database on your machine, and AI calls use provider keys you enter in Settings.

Before you start

  • A Google AI key is enough to use the app. OpenAI and Perplexity keys are optional and add those chatbots to your tracking.
  • Collection Runs are manual. Starting one uses your provider keys and may incur provider charges.
  • Missing a collection week leaves a gap in the historical data; the app does not reconstruct past chatbot answers.

Prerequisites

  • Bun
  • Node.js 22.5 or later on your PATH
  • Optional provider API keys for live collection (OpenAI, Google, and Perplexity)

Run the CLI app

From a source checkout, build the package and launch it:

bun install
bun run build:package
bun run start:cli

Once a version has been published to npm, you can instead run:

npx allsearch-open
bunx allsearch-open

New to Node? Install it from nodejs.org — npx ships with it.

The CLI starts a server on a free local port, prints its URL, and opens your default browser. Press Ctrl-C to stop it.

| Flag | Effect | | --------------------- | ------------------------------------------ | | --port <n> | Use exactly this port; fail if it is taken | | --no-open | Print the URL without opening a browser | | --version, --help | Show version or help |

The server binds to 127.0.0.1 only. One app instance may use a database at a time; a second instance is refused to protect SQLite from concurrent writers. Stopping the app during a Collection Run safely returns that run to pending, so it resumes on the next launch.

Run the macOS desktop app

Build an Apple-Silicon desktop app from a source checkout:

bun run build:desktop
open release/desktop/AllSearch-*.dmg

The DMG is unsigned and not notarized. Recent macOS versions report apps downloaded via a browser as "damaged and can't be opened" instead of the older "unidentified developer" prompt — Finder's right-click Open no longer works around this. Install steps:

  1. Drag AllSearch to Applications.
  2. Open Fix AllSearch.txt in the DMG window and follow it: paste xattr -dr com.apple.quarantine /Applications/AllSearch.app into Terminal and press Return. This clears the quarantine flag.

The desktop app runs the same loopback-only server and uses the same database as the CLI, so do not run both at once.

Your data

By default, the database is stored here:

| Platform | Path | | -------- | ---------------------------------------------------------------------------------- | | macOS | ~/Library/Application Support/AllSearch/allsearch.db | | Windows | %APPDATA%\AllSearch\allsearch.db | | Linux | $XDG_DATA_HOME/AllSearch/allsearch.db or ~/.local/share/AllSearch/allsearch.db |

Set ALLSEARCH_DB_PATH to use another database location. Provider keys are stored in this database after you add them in Settings.

More documentation

Licence

GNU Affero General Public License v3.0 (AGPL-3.0-or-later).