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

brewcli

v1.0.0

Published

An extensible CLI scaffolder for rapidly creating full-stack applications across modern JavaScript frameworks

Readme

🍺 brewcli

The Ultimate Project Scaffolder — Brew a fresh project in seconds.

brewcli is a beautiful, interactive CLI tool that scaffolds production-ready projects across the Node.js ecosystem. Pick your platform, language, and framework — and let brew handle the rest.

No more copying boilerplate. No more wiring configs by hand. Just brew it.


Why brewcli?

Setting up a new project should take seconds, not hours. brewcli gives you a single command to scaffold fully configured projects across 10+ frameworks, with support for both JavaScript and TypeScript out of the box. It wraps official CLIs (Next.js, Angular, NestJS, Expo, etc.) and ships battle-tested templates for Express and Fastify — so you always get the canonical project structure, not a random skeleton.


Supported Frameworks

| Framework | JavaScript | TypeScript | | ----------------- | :--------: | :--------: | | Express | ✅ | ✅ | | Fastify | ✅ | ✅ | | NestJS | ✅ | ✅ | | React (Vite) | ✅ | ✅ | | Next.js | ✅ | ✅ | | Vue.js (Vite) | ✅ | ✅ | | Angular | ✅ | ✅ | | React Native CLI | — | ✅ | | React Native Expo | ✅ | ✅ |


Quick Start

Install globally

npm install -g brewcli

Scaffold a project

create-brew-app my-app

Or just run it directly without installing:

npx brewcli my-app

You can also run it without a project name — brew will prompt you for one:

create-brew-app

How It Works

brewcli walks you through an interactive flow right in your terminal:

1.  Choose your platform     →  Node.js (more coming soon)
2.  Pick a language           →  JavaScript or TypeScript
3.  Select a framework        →  Express, Next.js, React, etc.
4.  Name your project         →  (if not passed as an argument)
5.  Sit back                  →  brew scaffolds everything for you

Once complete, you'll see the CHEERS screen with your project path and next steps.

What brew does under the hood

For Express and Fastify, brew copies from its own curated templates — pre-configured with sensible defaults so you can start coding immediately.

For everything else (Next.js, React, Vue, Angular, NestJS, Expo, React Native CLI), brew delegates to the official framework CLI with optimal flags — skip-install, skip-git, correct language template — then applies finishing touches like standardizing package.json fields and initializing a clean git repo.


Example

$ create-brew-app my-app

  ██████╗ ██████╗ ███████╗██╗    ██╗   ██████╗ ██╗     ██╗
  ██╔══██╗██╔══██╗██╔════╝██║    ██║   ██╔═══╝ ██║     ██║
  ██████╔╝██████╔╝█████╗  ██║ █╗ ██║   ██║     ██║     ██║
  ██╔══██╗██╔══██╗██╔══╝  ██║███╗██║   ██║     ██║     ██║
  ██████╔╝██║  ██║███████╗╚███╔███╔╝   ╚██████╗███████╗██║
  ╚═════╝ ╚═╝  ╚═╝╚══════╝ ╚══╝╚══╝     ╚═════╝╚══════╝╚═╝

  ⚡ The Ultimate Project Scaffolder for 2026

  ➜  Choose your platform:
     ❯ Node.js
       Other Framework

  ➜  Select language for node:
     ❯ TypeScript
       JavaScript

  ➜  Which framework or library do you want to use?
       Express
     ❯ Fastify
       NestJS
       ...

  ✨ Brewing complete! Your project is served hot.

  🚀 NEXT STEPS:
     1. cd my-app
     2. npm install
     3. npm run dev

  Happy Coding! May your brew never turn cold. 🍺

Requirements

  • Node.js v18 or later
  • npm v8 or later
  • git (optional, for auto-initializing repos)

Roadmap

  • 🔜 Python (Flask, FastAPI, Django)
  • 🔜 Go (Gin, Fiber)
  • 🔜 Rust (Actix, Axum)
  • 🔜 Custom template support
  • 🔜 Plugin system for post-scaffold hooks

More platforms and frameworks are actively being added. Contributions and suggestions are welcome!


Contributing

Contributions are welcome! If you'd like to add a framework, fix a bug, or improve the templates:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feat/add-django-support)
  3. Commit your changes (git commit -m 'feat: add Django scaffolding')
  4. Push to the branch (git push origin feat/add-django-support)
  5. Open a Pull Request

License

MIT © Harsh Mer · Keval Tank