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

@magicpro97/backforge

v1.0.0

Published

πŸ—„οΈ Backend Bootstrapper CLI β€” init, schema, types, seed, deploy for Supabase, Firebase, PocketBase

Readme

πŸ—„οΈ BackForge

Backend Bootstrapper CLI β€” Bootstrap your backend in seconds.

Initialize, define schemas, generate types, seed data, and deploy across multiple backend providers from a single CLI.

Features

  • πŸš€ Multi-provider support: Supabase, Firebase, PocketBase, Appwrite
  • πŸ“‹ Schema-first: Define data models in YAML β†’ auto-generate migrations + TypeScript types
  • 🎲 Smart seeding: Generate realistic fake development data
  • πŸ“ Type generation: TypeScript interfaces from your database schema
  • ☁️ One-command deploy: Deploy to Supabase Cloud, Firebase, Railway, Fly.io
  • ⚑ Interactive wizards: Guided setup for every step

Installation

npm install -g @magicpro97/backforge

Quick Start

# Initialize a new backend with Supabase
backforge init supabase

# Define your schema interactively
backforge schema define

# Apply schema to your database
backforge schema apply

# Generate TypeScript types
backforge types generate

# Seed with fake data
backforge seed --count 50

# Deploy to cloud
backforge deploy

Commands

| Command | Description | |---------|-------------| | backforge init [provider] | Interactive wizard: choose Supabase/Firebase/PocketBase/Appwrite | | backforge schema define | Interactive schema builder (tables, columns, relations) | | backforge schema apply | Apply schema to database (generate + run migrations) | | backforge schema export | Export schema to YAML | | backforge types generate | Generate TypeScript types from current schema | | backforge seed [--count N] | Generate fake seed data | | backforge deploy | Deploy backend to cloud provider | | backforge status | Check backend status (health, connection) | | backforge config set <key> <value> | Configure provider credentials | | backforge config list | Show current configuration |

Schema Format

Define your data models in YAML:

tables:
  - name: users
    columns:
      - name: id
        type: uuid
        primary: true
      - name: email
        type: string
        unique: true
      - name: name
        type: string
      - name: created_at
        type: timestamp
        default: now()

  - name: posts
    columns:
      - name: id
        type: uuid
        primary: true
      - name: title
        type: string
      - name: content
        type: text
      - name: author_id
        type: uuid
        references: users.id
      - name: created_at
        type: timestamp
        default: now()

Providers

| Provider | Init | Schema | Types | Seed | Deploy | |----------|------|--------|-------|------|--------| | Supabase | βœ… | βœ… | βœ… | βœ… | βœ… | | Firebase | βœ… | βœ… | βœ… | βœ… | βœ… | | PocketBase | βœ… | βœ… | βœ… | βœ… | βœ… | | Appwrite | βœ… | βœ… | βœ… | βœ… | βœ… |

Generated Types

BackForge generates clean TypeScript interfaces from your schema:

export interface User {
  id: string;
  email: string;
  name: string;
  created_at: Date;
}

export interface Post {
  id: string;
  title: string;
  content: string;
  author_id: string;
  created_at: Date;
}

Configuration

# Set provider credentials
backforge config set supabase.url https://your-project.supabase.co
backforge config set supabase.anonKey your-anon-key

# View current config
backforge config list

License

MIT Β© magicpro97