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

bextool

v2.0.2

Published

CLI for scaffolding apps, extensions, services, CLIs, and developer tooling

Readme

Overview

bextool helps developers bootstrap common project types quickly without juggling multiple generators, starter repos, or copy-paste setup steps.

The CLI provides:

  • a category-first interactive flow powered by @clack/prompts
  • a registry-driven architecture for adding new frameworks cleanly
  • a Handlebars template system for flexible file generation
  • optional dependency installation with npm, pnpm, or yarn
  • smoke-tested generators across all currently registered scaffolds

Official website: https://www.bextool.tech/

Supported Project Types

  • Frontend: React + Vite
  • Backend: Node.js + Express
  • Full-Stack: Next.js App Router
  • Mobile: React Native with Expo
  • Static Site: Hugo
  • CLI Tool: Commander
  • Game: Phaser
  • Browser Extension: Chrome, Firefox, Edge, Safari
  • Editor Extension: VS Code
  • CMS: WordPress theme
  • Data Science: Jupyter notebook starter
  • Microservice: Docker Compose
  • NPM Package: TypeScript library with Rollup and Vitest
  • Desktop App: Electron
  • Workflow Automation: n8n workflow starter

Why Use bextool

  • One CLI for many project categories.
  • Sensible defaults with minimal setup friction.
  • Templates are easy to inspect, customize, and extend.
  • Browser extensions remain first-class, with Chrome, Firefox, Edge, and Safari support.
  • The codebase is structured for long-term growth under src/config, src/generators, and templates.

Installation

Install globally:

npm install -g bextool

Or use it locally from this repository:

npm install
npm start

Quick Start

Run the CLI:

bextool

Scaffold apps, extensions, and developer tooling from one guided flow.

The flow will:

  1. Ask which project category you want to create.
  2. Ask which framework or starter you want inside that category.
  3. Collect project metadata such as name, description, version, and package manager.
  4. Ask framework-specific questions when needed.
  5. Generate the matching template files.
  6. Optionally install dependencies.

Example Workflows

Create a frontend app:

bextool

Then choose:

  • Frontend
  • React + Vite

Create a browser extension:

bextool

Then choose:

  • Browser Extension
  • target browser
  • starter type
  • permissions

Development

Install dependencies:

npm install

Run the CLI locally:

npm start

Run verification:

npm test

That test suite includes:

  • syntax checks for all src/**/*.js files
  • scaffold smoke tests for every registered framework
  • browser-extension matrix checks across all supported browsers and starter modes

Project Structure

src/
  config/
  generators/
  utils/
templates/
  frontend/
  backend/
  full-stack/
  mobile/
  static-site/
  cli-tool/
  game/
  browser-extension/
  editor-extension/
  cms/
  data-science/
  microservice/
  npm-package/
  desktop/
  workflow-automation/
scripts/
  check.js
  smoke-test.js
public/
  logo.png

Extending bextool

To add a new scaffold:

  1. Add a template folder under templates/.
  2. Add a generator module under src/generators/.
  3. Register the new framework in src/config/frameworks.js.

This keeps the CLI maintainable while making future expansion straightforward.

Package Metadata

  • Package name: bextool
  • Homepage: https://www.bextool.tech/
  • Node.js: >=18
  • Module type: ESM

License

ISC