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-flutter-forge

v2.0.0

Published

Forge a production-ready Flutter foundation with GetX, feature architecture, SQLite, and named routes.

Readme

Flutter Forge

Forge a production-ready Flutter foundation in one command.

Runs official flutter create, then scaffolds GetX, feature-based folders, named routes, SQLite, strict linting, .env config, and working sample screens — without Firebase.

npm create flutter-forge@latest my_app
cd my_app && flutter run

Prerequisites


Quick start

# Interactive
npm create flutter-forge@latest my_shop

# Defaults (CI / fast)
npm create flutter-forge@latest my_shop -- --yes --org com.mycompany --platforms android,ios,web

# Add a feature later
cd my_shop
npx flutter-forge feature cart --with-model

Documentation

| Guide | What you'll learn | |-------|-------------------| | CLI reference | All commands, flags, subcommands, troubleshooting | | Architecture | How every piece fits: main → routes → features → data | | Customization | Edit from splash → onboarding → features → SQLite/API | | Existing projects | Overlay Forge on flutter create apps, incremental use | | Publishing | Professional npm publish checklist |

Generated apps also include FEATURES.md and README.md in the project root.


Commands at a glance

| Command | Description | |---------|-------------| | npm create flutter-forge@latest [name] | New project (recommended) | | npx flutter-forge create [name] | Same, via flutter-forge binary | | npx flutter-forge feature <name> | Scaffold feature + wire routes | | npx flutter-forge generate model <name> | Standalone model with JSON helpers | | npx flutter-forge generate repository <name> | Repository + DAO stub + DI wiring |

Create flags: --yes, --org, --platforms, --no-notes, --dry-run, --skip-flutter-create
Feature flags: --with-model, --with-repository, --with-service, --route, --no-binding

Details → docs/CLI.md


What you get

  • Official Flutter android / ios / web / desktop folders (from flutter create)
  • Base classesBaseController, BaseRepository, BaseView with loading-state pattern
  • Feature modulesbindings/, controllers/, views/, optional models/, repositories/, services/
  • Named routesAppRoutes + AppPages + GetMaterialApp
  • Themes — Material 3 light/dark/system, persisted in SQLite
  • SQLiteDatabaseHelper, DAOs, typed repositories (Settings, Home, optional Notes)
  • HTTPApiService wrapper (http package) with AppException handling
  • Core utilities — validators, formatters, popups, logger, exceptions, device utils
  • .env + AppConfig — safe API key pattern
  • flutter_lints — strict analysis_options.yaml for beginners
  • Demo flow — splash → onboarding → shell (category grid home / typed notes explore / settings)

Customize your app (short path)

  1. Splash copylib/core/constants/app_texts.dart
  2. Colors / themelib/core/constants/app_colors.dart, lib/core/theme/
  3. New screennpx flutter-forge feature orders
  4. API URL.env + lib/core/config/app_config.dart

Full walkthrough → docs/CUSTOMIZATION.md


Development (this repo)

git clone https://github.com/salim1334/flutter-forge.git   # update URL after you publish
cd flutter-forge
npm install
npm run build
node bin/flutter-forge.js --help

License

MIT — see LICENSE