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
# interactive prompts open in terminal
# copy the returned download URL
# download and unzip the generated projectPick 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_appOpen interactive prompts and generate a secure ZIP download link.
Use custom API base
flutterseed init my_app --api-url https://flutterseed.pro.bdPoint CLI to a deployed FlutterSeed API environment.
Download ZIP from terminal
Invoke-WebRequest -Uri <download-link> -OutFile my_app.zipUse the generated link to download your scaffold ZIP quickly.
CLI help
flutterseed --helpList all flags and options supported by the CLI.