npm (global)
npm install -g flutterseed-cliCommand Line Workflow
Use a professional terminal-first flow to scaffold, configure, and run Flutter projects quickly. This guide covers installation, setup, common commands, and troubleshooting.
Run the following commands to install the CLI, scaffold your project, and launch the app.
npm install -g flutterseed-cli
flutterseed init my_app
cd my_app
flutter pub get
flutter runPick the install style that matches your environment.
npm (global)
npm install -g flutterseed-clibun (global)
bun add -g flutterseed-clinpx (no global install)
npx flutterseed-cli init my_appReference commands you will use most in daily workflow.
Initialize project
flutterseed init my_appCreate a new Flutter project scaffold using the default starter.
Use starter preset
flutterseed init my_app --preset feature-firstStart with a preset architecture and package combination.
Select output directory
flutterseed init my_app --out ./workspaceGenerate the project into a custom output folder.
CLI help
flutterseed --helpList all flags and options supported by the CLI.