0

Completed

0%

Progress

0

Starred

01

What is Nuxt.js?

beginner#Core Concepts
02

Why use Nuxt? What problems does it solve?

beginner#Core Concepts
03

Explain Nuxt 3 architecture: how do Vue 3, Vite, and Nitro work together?

beginner#Architecture
04

Vue vs Nuxt: When should you choose one over the other?

beginner#Core Concepts
05

What is SSR (Server-Side Rendering) in Nuxt and how does it work?

beginner#Rendering Modes
06

What is CSR (Client-Side Rendering) in Nuxt and when would you use it?

beginner#Rendering Modes
07

What is SSG (Static Site Generation) in Nuxt and how does it work?

beginner#Rendering Modes
08

What is hybrid rendering in Nuxt and how do you configure it?

beginner#Rendering Modes
09

How does the pages folder work in Nuxt?

beginner#Routing
10

Explain file-based routing in Nuxt with dynamic routes.

beginner#Routing
11

How do nested routes work in Nuxt using the pages folder?

beginner#Routing
12

What are layouts in Nuxt and how do you use them?

beginner#Layouts
13

What is app.vue and when should you use it instead of layouts?

beginner#App Entry
14

How does the components folder work with auto-imports in Nuxt?

beginner#Components
15

What are composables in Nuxt and how do they differ from Vue composables?

beginner#Composables
16

What is useState in Nuxt and how does it work for shared state?

beginner#State Management
17

What is useFetch in Nuxt and how does it differ from $fetch?

beginner#Data Fetching
18

What is useAsyncData and when should you use it instead of useFetch?

beginner#Data Fetching
20

What are middleware basics in Nuxt and how do you define them?

beginner#Middleware
21

What are plugins in Nuxt and how do you use them?

beginner#Plugins
22

What are server API basics in Nuxt? How do you create API endpoints?

beginner#Server
23

What is the difference between the assets and public folders in Nuxt?

beginner#Assets
24

What is nuxt.config.ts and what can you configure there?

beginner#Configuration
25

What are SEO basics in Nuxt and how do you manage meta tags?

beginner#SEO
26

What is useHead in Nuxt and how does it work?

beginner#SEO
27

What is useSeoMeta and why should you use it over useHead for SEO?

beginner#SEO
28

What is Nitro and how does it power Nuxt 3's server capabilities?

intermediate#Nitro Basics
29

What are the different types of route middleware in Nuxt and how do they execute?

intermediate#Middleware
30

What is runtimeConfig and how do you use it for environment variables in Nuxt?

intermediate#Configuration
31

How do you create and use plugins in Nuxt 3 with different execution modes (client, server, both)?

intermediate#Plugins
32

How do you create advanced composables in Nuxt that leverage SSR, async data, and auto-imports?

intermediate#Composables
33

How does useCookie work and when should you use it for state persistence?

intermediate#State Management
34

How do you use useRoute and useRouter effectively in Nuxt 3?

intermediate#Routing
35

How do you use useRequestHeaders for server-side SEO and API calls?

intermediate#SEO
36

How do you access runtimeConfig in different parts of a Nuxt app (components, plugins, middleware, server routes)?

intermediate#Configuration
37

How do you implement authentication flow in Nuxt 3, from login to protected routes?

intermediate#Authentication
38

How do you integrate Pinia with Nuxt 3 for advanced state management?

intermediate#State Management
39

What are lazy loading and dynamic imports in Nuxt, and how do you use them to optimize performance?

intermediate#Performance
40

What are route rules in Nuxt and how can you use them for hybrid caching and redirects?

intermediate#Routing
41

How do you implement image optimization in Nuxt using @nuxt/image?

intermediate#Optimization
42

What are the different data fetching strategies in Nuxt (server-only, client-only, SWR, polling) and when to use each?

intermediate#Data Fetching
43

What is hydration in Nuxt and what are common hydration mismatch errors? How do you debug and fix them?

intermediate#Hydration
44

How does Nitro's build pipeline work and how does it achieve universal deployment across different runtimes?

advanced#Nitro Internals
45

How does Nuxt's payload system work and how can you optimize payload extraction for performance?

advanced#Hydration & Payload
46

What is islands architecture in Nuxt and how does it enable partial hydration?

advanced#Islands Architecture
47

How does streaming SSR work in Nuxt and what are its performance implications?

advanced#Streaming SSR
48

How can you implement a multi-tier caching strategy in Nuxt using Nitro storage and route rules?

advanced#Advanced Caching
49

How do route rules work under the hood in Nitro and how can you create custom route rules?

advanced#Rendering Internals
50

How does Nuxt manage request isolation and server context to prevent cross-request state leaks?

advanced#Server Lifecycle
51

How do you debug and fix memory leaks in a production Nuxt SSR application?

advanced#Performance
52

What are the advanced deployment strategies for Nuxt 3 at scale (blue-green, canary, edge, multi-region)?

advanced#Deployment
53

How does Nitro's rendering pipeline integrate with Vue SSR? Explain the step-by-step flow from request to HTML response.

advanced#Nitro Rendering Pipeline
54

What are the limitations and advanced techniques for running Nuxt on edge runtimes (Cloudflare Workers, Vercel Edge)?

advanced#Edge Rendering
55

How can you design advanced composable patterns in Nuxt, including factories, dependency injection, and lifecycle-aware composables?

advanced#Composable Architecture
56

How do you create advanced Nuxt modules (plugins) with hooks, templates, and programmatic generation?

advanced#Plugin Internals
57

What are the advanced techniques to debug and fix hydration mismatches in complex Nuxt applications?

advanced#Hydration Mismatch
58

How do you implement advanced SEO strategies in Nuxt at scale, including dynamic sitemaps, hreflang, structured data, and crawl optimization?

advanced#Advanced SEO
59

How do you scale a Nuxt application to handle millions of requests per day?

advanced#Scaling
60

How do you optimize SSR performance in Nuxt beyond basic caching, including critical CSS, resource hints, and payload pruning?

advanced#SSR Optimization
61

How does Nitro's event handler lifecycle work? Explain `defineEventHandler`, hooks, and context propagation.

advanced#Server Engine Internals
62

How do you profile a production Nuxt application for CPU, memory, and request latency using OpenTelemetry and flamegraphs?

advanced#Performance Profiling