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/appforge

v1.0.0

Published

πŸ—οΈ Universal App Scaffolding CLI β€” create complete projects with framework, backend, auth, CI/CD in one command

Downloads

21

Readme

πŸ—οΈ AppForge

npm version CI License: MIT Node.js

Universal App Scaffolding CLI β€” create complete projects with framework, backend, auth, styling, CI/CD, and Copilot agents in one command.

Install

npm install -g @magicpro97/appforge

Quick Start

appforge init my-app

The interactive wizard walks you through:

  1. Project name β€” name your app
  2. Framework β€” Expo, Flutter, Next.js, Vite (React/Vue/Svelte), Astro
  3. Backend β€” Supabase, Firebase, PocketBase, Appwrite, or None
  4. Auth β€” Email/Password, Social (Google/Apple/GitHub), Magic Link, or None
  5. Styling β€” Tailwind, NativeWind, styled-components, CSS Modules, or None
  6. State management β€” Zustand, Redux, Riverpod, Provider, or None
  7. CI/CD β€” GitHub Actions or None
  8. Copilot agents β€” Generate .github/agents/ and .github/instructions/
  9. README β€” Auto-generate project README
  10. Landing page β€” Generate a landing page skeleton

Commands

| Command | Description | |---------|-------------| | appforge init [name] | Interactive wizard to create a new project | | appforge add <module> | Add feature module (auth, analytics, push, payments) | | appforge template list | List available project templates | | appforge template save <name> | Save current config as reusable template | | appforge config set <key> <value> | Set default config value | | appforge config list | Show current configuration |

Add Modules

Add features to an existing project:

cd my-app
appforge add auth        # Add authentication boilerplate
appforge add analytics   # Add analytics module
appforge add push        # Add push notifications
appforge add payments    # Add payments integration

Templates

Use built-in templates or save your own:

# List templates
appforge template list

# Save current project as template
appforge template save my-stack

Built-in Templates

| Template | Stack | |----------|-------| | expo-supabase | Expo + Supabase + NativeWind + Zustand | | flutter-firebase | Flutter + Firebase + Riverpod | | nextjs-supabase | Next.js + Supabase + Tailwind + Zustand |

Supported Tech

Frameworks

| Framework | CLI Used | |-----------|----------| | Expo (React Native) | npx create-expo-app@latest | | Flutter | flutter create | | Next.js | npx create-next-app@latest | | Vite (React/Vue/Svelte) | npm create vite@latest | | Astro | npm create astro@latest |

Backends

| Backend | Description | |---------|-------------| | Supabase | PostgreSQL + Auth + Storage + Realtime | | Firebase | Firestore + Auth + Storage + Cloud Functions | | PocketBase | Open-source backend in a single file | | Appwrite | Open-source backend platform |

Auth Methods

  • πŸ“§ Email/Password
  • 🌐 Social Login (Google, Apple, GitHub)
  • ✨ Magic Link

Styling

  • 🎨 Tailwind CSS
  • 🌊 NativeWind (React Native)
  • πŸ’… styled-components
  • πŸ“¦ CSS Modules

Configuration

Set defaults to skip wizard prompts:

appforge config set framework nextjs
appforge config set backend supabase
appforge config set styling tailwind
appforge config list

Development

git clone https://github.com/magicpro97/appforge.git
cd appforge
npm install
npm run build
node dist/index.js init my-app

License

MIT Β© magicpro97