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

flash-builder

v1.0.15

Published

<div align="center">

Readme

⚡ Flash Builder

    ________           __       ____        _ __    __         
   / ____/ /___ ______/ /_     / __ )__  __(_) /___/ /__  _____
  / /_  / / __ `/ ___/ __ \   / __  / / / / / / __  / _ \/ ___/
 / __/ / / /_/ (__  ) / / /  / /_/ / /_/ / / / /_/ /  __/ /    
/_/   /_/\__,_/____/_/ /_/  /_____/\__,_/_/_/\__,_/\___/_/     

A blazingly fast CLI tool for scaffolding modern backend projects

npm version License: MIT

InstallationUsageCommandsExamples


✨ Features

  • 🚀 Lightning Fast - Built with Bun for maximum performance
  • 📦 Zero Configuration - Get started immediately with sensible defaults
  • 🎯 Multiple Templates - Backend (Express) and MCP Server scaffolding
  • 🔄 Auto Install - Automatically installs dependencies after project creation
  • 🎨 Modern Stack - TypeScript, Express, and latest best practices
  • 🛠️ Flexible - Generate in current directory or create new folders

📦 Installation

Global Installation

bun install -g flash-builder@latest

🚀 Usage

fbi <command> [options]

Quick Start

# Create a new backend project
fbi be my-project-name

# Create in a specific subdirectory
fbi be my-project-name ./backend


# Create MCP server project
fbi mcp my-mcp-server


# Sync interface from Flash Builder
fbi sync

📚 Commands

be <project-name> [target-path]

Initialize a new backend project with Express and TypeScript.

Arguments:

  • project-name - Name of your project (used in package.json)
  • target-path - (Optional) Target directory (. for current dir, ./path for subdirectory)

Generated Structure:

my-backend/
├── src/
│   ├── routes/
│   ├── controllers/
│   ├── models/
│   ├── middlewares/
│   └── index.ts
├── .env
├── .gitignore
├── package.json
└── README.md

Includes:

  • Express.js server setup
  • TypeScript configuration
  • Environment variables support
  • Auto-installed dependencies
  • Development scripts

mcp <project-name>

Initialize a new MCP (Model Context Protocol) server project.

Arguments:

  • project-name - Name of your MCP server project

Generated Structure:

my-mcp-server/
├── src/
│   ├── tools/
│   ├── resources/
│   └── index.ts
├── .env
├── .gitignore
├── package.json
└── README.md

Includes:

  • MCP SDK setup
  • TypeScript configuration
  • Tools and resources directories
  • Auto-installed dependencies

sync

Sync the current backend interface with the application target.

Usage:

fbi sync

🎯 Examples

Create Backend Project

# Standard - creates new folder
fbi be my-api

# In current directory
fbi be my-api .

# In subdirectory
fbi be my-api ./backend

# With verbose logging
fbi be my-api --verbose

Create MCP Server

# Standard MCP server
fbi mcp my-mcp-server

# With verbose logging
fbi mcp my-mcp-server -v

After Project Creation

cd my-api
bun run dev

⚙️ Options

| Option | Alias | Description | |--------|-------|-------------| | --verbose | -v | Enable verbose logging | | --help | -h | Show help message | | --version | | Show version number |


🔧 Development

Prerequisites

  • Bun v1.3.6 or higher

Setup

# Clone the repository
git clone https://github.com/jefripunza/flash-builder-cli.git
cd flash-builder-cli

# Install dependencies
bun install

# Run in development
bun run start

# Build for production
bun run build

# Compile binary
bun run compile

📝 Project Templates

Backend (Express) Template

  • Framework: Express.js
  • Language: TypeScript
  • Runtime: Bun
  • Features:
    • REST API structure
    • Environment variables
    • Hot reload in development
    • Production build script

MCP Server Template


🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.


👤 Author

Jefri Herdi Triyanto (@jefripunza)


🙏 Acknowledgments

  • Built with Bun - A fast all-in-one JavaScript runtime
  • Powered by meow - CLI helper
  • Inspired by modern development workflows

⚡ Flash Builder - Build faster, ship sooner

Made with ❤️ by Jefri Herdi Triyanto