Building Modern Apps with Nuxt 3
Why Nuxt 3?
Nuxt 3 brings a significantly improved developer experience with auto-imports, server routes, and the Nitro engine. You can build full-stack applications in record time without sacrificing performance.
File-Based Routing
Drop a .vue file in pages/ and you instantly have a route. Dynamic params use bracket syntax like [slug].vue. Nested routes mirror your directory structure.
Server Routes
The server/ directory gives you a built-in API layer powered by Nitro. Define handlers with defineEventHandler and they deploy anywhere — Node.js, Cloudflare Workers, Deno, or serverless.
Getting Started
Run npx nuxi init my-app and you are ready. The development server supports hot module replacement, TypeScript out of the box, and zero-config SSR.
Comments (0)