Getting Started
Create your first Start application in just 3 easy steps.
Three Easy Steps to Get Started
1. Install CLI
Run the command below to install our command-line interface globally:
npm install -g @start/cli@latest
2. Create Project
Initialize a new project with one simple command in your terminal:
start new my-app
3. Deploy
Your app will run automatically after these steps complete:
cd my-app && npm run deploy
Example Project Setup
terminal
// After global installation
mkdir my-start-project
cd my-start-project
start init
// This will create:
├── index.html
├── styles/
├── pages/
└── app.config.js
npm install
npm run dev
Pro Tip:
Use the --typescript flag when initializing your project for built-in TypeScript support:
start new my-app --typescript