Get Started with Start
Turn your ideas into reality with our beginner-friendly setup process.
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-app
cd my-start-app
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