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 bunxbunx 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 Init↗command.
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 projectcd my-app# Start development serverbun dev
