Getting Started
Quick Start
Get up and running with NNO in 10 minutes.
Quick Start
This guide gets you from zero to a running NNO development environment.
Prerequisites
- Node.js 20+ (22 recommended)
- pnpm 10+
- Cloudflare account with Workers and Pages enabled
- NNO CLI installed globally
1. Install the CLI
pnpm add -g @neutrino-io/cli2. Authenticate
nno loginThis opens a browser window to authenticate with the NNO platform.
3. Create a Project
nno project init my-app
cd my-appThe CLI scaffolds a new project from the nno-stack-starter template.
4. Start Development
pnpm devThis starts:
- Frontend dev server at
http://localhost:5174 - Backend Workers locally via Wrangler
5. Deploy
nno project deployDeploys your app to Cloudflare Pages (frontend) and Workers (backend).
Next Steps
- Feature Development Guide — Build your first feature package
- Environment Guide — Local, staging, and production workflows