create Command
Create a new Frame-Master project with all necessary files and configuration.
📖 Usage
Basic command syntax.
frame-master create [name] [options]
# Or with bunx
bunx frame-master create my-app📝 Arguments
[name]— Project name (optional, will prompt if not provided)
⚙️ Options
-t, --template— Create from template (interactive selection)-v, --verbose— Enable detailed logging-h, --help— Show help
🎯 Creation Modes
If a project already exists in the directory, see the init command.
From Template
Start with a pre-configured template.
frame-master create my-app --template <template-name>Info: Templates are pulled from npm or GitHub repositories configured in the template registry.
Tip: Use interactive mode (no arguments) to select template and name or minimal project.
🚀 After Creation
Next steps after creating a project.
# Navigate to project
cd my-app
# Start development server
bun dev