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

create-wa-stack

v0.1.0

Published

Single-command scaffolder for production-ready WhatsApp bots

Readme

🦀 create-wa-stack

Production-ready WhatsApp bots in 30 seconds. Like create-next-app for the WhatsApp ecosystem.

Quick Start

npm create wa-stack my-bot

Or with npx:

npx create-wa-stack my-bot

Or with yarn:

yarn create wa-stack my-bot

What You Get

A fully-configured WhatsApp bot with:

  • Modern Stack: TypeScript/JavaScript, ESM, Node 18+
  • 🛡️ Anti-ban Protection: Rate limiting + warmup strategies (optional)
  • 🌐 REST API: HTTP endpoints for sending messages (optional)
  • 🪝 Webhooks: Forward events to your URLs (optional)
  • 🤖 MCP Server: Claude/Cursor agent integration (optional)
  • 🔌 n8n Adapter: No-code workflow automation (optional)
  • 🐳 Docker Ready: Dockerfile + docker-compose.yml (optional)
  • 📝 Starter Handlers: /help, /ping, echo examples (optional)

Features

All powered by the Baileys ecosystem:

Usage

Interactive Mode

npx create-wa-stack my-bot

You'll be prompted to select:

  • Project name
  • Features to include
  • TypeScript or JavaScript
  • Git initialization
  • Dependency installation

Non-Interactive Mode

Use defaults (antiban + rest + webhooks + docker + starter):

npx create-wa-stack my-bot --yes

Custom features:

npx create-wa-stack my-bot --features antiban,rest,mcp --no-docker

Skip installation:

npx create-wa-stack my-bot --no-install

CLI Options

--yes, -y              Use defaults (skip prompts)
--features <list>      Comma-separated: antiban,rest,webhooks,mcp,n8n,docker,starter
--template <name>      Preset template (coming in v0.2)
--no-docker            Skip Docker files
--no-typescript        Use JavaScript instead of TypeScript
--no-git               Skip git initialization
--no-install           Skip npm install
--force                Overwrite existing directory
--help, -h             Show help

After Scaffolding

cd my-bot
cp .env.example .env
# Edit .env and set your API_KEY
npm run dev

Scan the QR code with WhatsApp on your phone, and you're live!

Docker Deployment

docker-compose up -d

Customization

The scaffolded project is fully yours to modify:

  • Add handlers in src/handlers/
  • Configure environment in .env
  • Adjust rate limits in anti-ban config
  • Add custom middleware
  • Integrate with databases, queues, etc.

Examples

Minimal Bot (TypeScript + Anti-ban)

npx create-wa-stack simple-bot --features antiban,starter

Full Production Bot

npx create-wa-stack prod-bot --features antiban,rest,webhooks,docker

AI Agent Integration

npx create-wa-stack ai-bot --features antiban,mcp

Roadmap

  • v0.2: More templates (auctioneer, customer-support, AI-bot)
  • v0.3: Web UI scaffolder (dashboard + admin panel)
  • v0.4: Monorepo workspace support

Contributing

Issues and PRs welcome at github.com/kobie3717/create-wa-stack.

License

MIT

Author

Kobus Wentzel (@kobie3717)