Project Generator
Not just a template copy: official CLIs where they exist, audited generation where they don't, and tests, CI, and Docker in every project.
Stacks
nextjsApp Router, TypeScript, Tailwind, and optional shadcn/ui.
Scaffold: create-next-app
reactReact SPA with Vite, TypeScript, and testing.
Scaffold: Vite
sveltekitOfficial SvelteKit scaffolding via the sv CLI.
Scaffold: sv create
expressapp/server split so tests never leave an open socket.
Scaffold: generated
nestjsStructured Node.js backend with the official CLI.
Scaffold: Nest CLI
fastapiPython API with tests and Docker.
Scaffold: generated
djangoBatteries-included Python web framework.
Scaffold: django-admin
laravelPHP framework via composer create-project.
Scaffold: composer
spring-bootScaffolded via the Initializr API; no local Java or Maven needed to scaffold.
Scaffold: Spring Initializr API
aspnet.NET Web API with the official dotnet CLI.
Scaffold: dotnet new webapi
go-fiberFast Go web framework with tests.
Scaffold: generated
rust-axumType-safe Rust web services.
Scaffold: generated
flutterCross-platform apps with a pre-scaffold compatibility check.
Scaffold: flutter create
react-nativeNative mobile with compatibility checks.
Scaffold: official CLI
expoManaged React Native workflow.
Scaffold: create-expo-app
electronCross-platform desktop apps.
Scaffold: generated
tauriLightweight Rust-powered desktop apps.
Scaffold: create-tauri-app
Demo
devforgekit new: zsh
ReadyQuality score
scoreGenerator() runs each generator's pure generate() function and scores the actual file list. No disk writes, no guesses.
devforgekit new nextjs --quality
# Generator Quality Score: 9/9
# Documentation ✓ Architecture ✓ Testing ✓
# CI ✓ Docker ✓ Editor Support ✓
# Validation ✓ Examples ✓ Cross Platform ✓Generated structure
Every project includes the same production baseline, adapted per stack.
my-app/
├── src/ # working example, not a placeholder
├── tests/ # real tests that pass on generation
├── .github/workflows/ # CI pipeline
├── Dockerfile # where it fits the stack
├── .editorconfig
├── .vscode/settings.json
├── README.md
└── LICENSE # your choice: MIT, Apache-2.0, GPL-3.0Every generated project ships with tests, CI, and Docker: the parts everyone skips.