Documentation

create Command

Create a new Frame-Master project with all necessary files and configuration.

📖 Usage

Basic command syntax.

terminal
frame-master create [name] [options]
# Or with bunx
bunx frame-master create my-app

📝 Arguments

Command arguments.

[name]Project name (optional, will prompt if not provided)

⚙️ Options

Available flags.

-t, --templateCreate from template (interactive selection)
-v, --verboseEnable detailed logging
-h, --helpShow help

🎯 Creation Modes

Different ways to create a project.

💡
if a project is already present in the directory, see the Initcommand.

From Template

Start with a pre-configured template.

terminal
frame-master create my-app --template <template-name>
💡
Templates are pulled from npm or GitHub repositories configured in the template registry.
💡
Use interactive mode (no arguments) to select template and name or minimal project

🚀 After Creation

Next steps after creating a project.

terminal
# Navigate to project
cd my-app
# Start development server
bun dev

🎯Next Steps