Quick Start
Get a full-stack Hypersonic.js app running in under two minutes.
Prerequisites
- Node.js 24 or later — nodejs.org
1. Install the CLI
bash
npm install -g @hypersonic-js/cli2. Scaffold a new project
bash
hypersonic newThe CLI will ask two questions:
Where would you like to create your project?
1. Create a new directory
2. Use current directory
Choice [x]:
Project name: my-appThen it runs every setup step automatically:
- Installs dependencies with
npm install - Creates the SQLite database and runs migrations
- Generates the Prisma client
- Scaffolds the admin dashboard pages
- Generates admin metadata from your schema
- Prompts you to create your first admin account:
Email: you@example.com
Name: Your Name
Password:3. Start the dev server
bash
cd my-app
npm run devOpen http://localhost:3000 — your app is running.
Next steps
- Configuration — all
hypersonic.config.tsoptions - Routing & Controllers — writing Express route handlers
- Frontend — Inertia props, navigation, and forms
- Authentication — protecting routes and OAuth providers