Installation
Set up Vertx Studioin a brand-new project in under five minutes. We'll assume you have Node.js 20+ installed.
Prerequisites
Vertx Studioruns anywhere Node.js does, but we test against the latest LTS. You'll also want a package manager - we use pnpm in our examples but npm and yarn work just as well.
Create a new project
Run the create command and answer the prompts. The CLI will scaffold a TypeScript app preconfigured with Vertx Studio's defaults.
pnpm create my-app
cd my-app
pnpm devAdd to an existing app
Install the runtime and the CLI as dev dependencies, then run example-cli init to generate config files.
pnpm add @example/runtime
pnpm add -D @example/cli
pnpm example-cli initNext steps
You're ready to start building. Open app/page.tsx and start editing - Vertx Studio will hot-reload as you go.
- Read the project structure guide.
- Wire up your first data fetcher.
- Deploy to Vercel in one click.