CLI Commands
Complete reference for Frame-Master command-line interface tools.
📦 Installation
The CLI is included with Frame-Master.
terminal
# Install Frame-Master (includes CLI)bun add frame-master# Verify installationbunx frame-master --version
📋 Commands Overview
All available CLI commands at a glance.
dev
DevelopmentStart development server with hot reload
frame-master devstart
ProductionStart production server
frame-master startbuild
BuildBuild project for production
frame-master buildinit
SetupInitialize in existing project
frame-master initcreate
SetupCreate new project
frame-master create [name]plugin
PluginsManage plugins
frame-master plugin <cmd>test
TestingTesting server with GUI
frame-master test startextended-cli
PluginsPlugin custom commands
frame-master extended-cli <cmd>⚙️ Global Options
Options available for all commands.
-v, --verboseEnable detailed logging-V, --versionShow version number-h, --helpShow help for commandterminal
# Enable verbose modeframe-master --verbose dev# Show helpframe-master --helpframe-master dev --help
🚀 Common Workflows
Typical command sequences for different tasks.
New Project
terminal
frame-master create my-appcd my-appframe-master dev
Existing Project
terminal
cd existing-projectbun add frame-masterframe-master initframe-master dev
Production Deployment
terminal
frame-master buildNODE_ENV=production frame-master start
Create Plugin
terminal
frame-master plugin create my-plugincd my-plugin# Edit index.ts...
