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

adbee

v0.1.0

Published

Convenience CLI for Android Debug Bridge (adb).

Readme

adbee

adbee is a Bun-based CLI for personal Android Debug Bridge (adb) conveniences, with packaging, testing, linting, and release tooling already wired up for npm publishing.

Features

  • Bun-first development: Leverages Bun for lightning-fast installs, runs, and tests.
  • TypeScript support: Write type-safe code from the start.
  • Linting & Formatting: Enforced with Biome for consistent code style.
  • Bundling: Uses tsdown for efficient bundling into ESM and CJS formats, with type declarations.
  • Testing: Built-in unit testing with bun test.
  • Versioning & Publishing: Managed with Changesets for streamlined releases to npm.
  • GitHub Actions: Continuous Integration (CI) workflows for automated build, test, lint, and publish processes.

Getting Started

To use this template, you typically would use a scaffolding tool like bunx create-something -t adbee.

Installation

If you're using this template directly (e.g., after cloning), you can install dependencies with Bun:

bun install

Development

  • Build: bun run build
  • Type Check: bun run check-types
  • Lint: bun run lint
  • Lint & Fix: bun run lint:fix
  • Test: bun test
  • Test (Watch Mode): bun run test:watch

Publishing

This template uses Changesets for versioning and publishing.

  1. Add a changeset:

    bun changeset

    Follow the prompts to describe your changes. This will create a markdown file in .changeset/.

  2. Version packages:

    bun run version

    This command reads the changeset files, updates package versions, updates CHANGELOG.md, and deletes the used changeset files. It also runs bun lint:fix.

  3. Publish to npm:

    bun run release

    This command builds the package and publishes it to npm. The main CI release flow is intended to use npm trusted publishing, so configure the package's trusted publisher in npm instead of relying on an NPM_TOKEN for automated releases.

Project Structure

.
├── src/             # Source code for your library
│   └── index.ts     # Main entry point for your library
├── test/            # Unit tests
│   └── index.test.ts # Example test file
├── tsdown.config.ts   # Configuration for tsdown (bundling)
├── biome.json       # Biome linter/formatter configuration
├── package.json     # Project metadata and scripts
└── ... (other config files and GitHub workflows)

License

MIT – see LICENSE.