auth0-nuxt

द्वारा auth0

Auth0 प्रमाणीकरण को Nuxt 3/4 अनुप्रयोगों में लागू करते समय, सत्र प्रबंधन कॉन्फ़िगर करते समय, मिडलवेयर के साथ रूट्स को सुरक्षित करते समय, या API को एकीकृत करते समय उपयोग करें।

npx skills add https://github.com/auth0/agent-skills --skill auth0-nuxt

Auth0 Nuxt SDK

Overview

Server-side session authentication for Nuxt 3/4. NOT the same as @auth0/auth0-vue (client-side SPA).

Core principle: Uses server-side encrypted cookie sessions, not client-side tokens.

When to Use

Use this when:

  • Building Nuxt 3/4 applications with server-side rendering (Node.js 20 LTS+)
  • Need secure session management with encrypted cookies
  • Protecting server routes and API endpoints
  • Accessing Auth0 Management API or custom APIs

Don't use this when:

  • Using Nuxt 2 (not supported - use different Auth0 SDK)
  • Building pure client-side SPA without server (use @auth0/auth0-vue instead)
  • Using non-Auth0 authentication provider
  • Static site generation only (SSG) without server runtime

Critical Mistakes to Avoid

MistakeSolution
Installing @auth0/auth0-vue or @auth0/auth0-spa-jsUse @auth0/auth0-nuxt
Auth0 app type "Single Page Application"Use "Regular Web Application"
Env vars: VITE_AUTH0_* or VUE_APP_AUTH0_*Use NUXT_AUTH0_* prefix
Using useUser() for security checksUse useAuth0(event).getSession() server-side
Missing callback URLs in Auth0 DashboardAdd http://localhost:3000/auth/callback
Weak/missing session secretGenerate: openssl rand -hex 64
Hardcoding credentials in nuxt.config.tsLeave runtimeConfig values as empty strings; Nuxt auto-fills from NUXT_AUTH0_* env vars

Quick Setup

# 1. Install
npm install @auth0/auth0-nuxt

# 2. Generate secret
openssl rand -hex 64
# 3. .env
NUXT_AUTH0_DOMAIN=your-tenant.auth0.com
NUXT_AUTH0_CLIENT_ID=your-client-id
NUXT_AUTH0_CLIENT_SECRET=your-client-secret
NUXT_AUTH0_SESSION_SECRET=<from-openssl>
NUXT_AUTH0_APP_BASE_URL=http://localhost:3000
NUXT_AUTH0_AUDIENCE=https://your-api  # optional
// 4. nuxt.config.ts
// Leave values as empty strings — Nuxt auto-fills them from NUXT_AUTH0_* env vars at runtime.
// If you prefer explicit mapping, use: domain: process.env.NUXT_AUTH0_DOMAIN || ''
export default defineNuxtConfig({
  modules: ['@auth0/auth0-nuxt'],
  runtimeConfig: {
    auth0: {
      domain: '',
      clientId: '',
      clientSecret: '',
      sessionSecret: '',
      appBaseUrl: 'http://localhost:3000',
      audience: '',  // optional
    },
  },
})

Built-in Routes

The SDK automatically mounts these routes:

RouteMethodPurpose
/auth/loginGETInitiates login flow. Supports ?returnTo=/path parameter
/auth/callbackGETHandles Auth0 callback after login
/auth/logoutGETLogs user out and redirects to Auth0 logout
/auth/backchannel-logoutPOSTReceives logout tokens for back-channel logout

Customize: Pass routes: { login, callback, logout, backchannelLogout } or mountRoutes: false to module config.

Composables

ComposableContextUsage
useAuth0(event)Server-sideAccess getUser(), getSession(), getAccessToken(), logout()
useUser()Client-sideDisplay user data only. Never use for security checks
// Server example
const auth0 = useAuth0(event);
const session = await auth0.getSession();
<script setup>
const user = useUser();
</script>

<template>
  <div v-if="user">Welcome {{ user.name }}</div>
<template>

Protecting Routes

Three layers: Route middleware (client), server middleware (SSR), API guards.

// middleware/auth.ts - Client navigation
export default defineNuxtRouteMiddleware((to) => {
  if (!useUser().value) return navigateTo(`/auth/login?returnTo=${encodeURIComponent(to.path)}`);
});
// server/middleware/auth.server.ts - SSR protection
export default defineEventHandler(async (event) => {
  const url = getRequestURL(event);
  const auth0Client = useAuth0(event);
  const session = await auth0Client.getSession();
  if (!session)  {
    return sendRedirect(event, `/auth/login?returnTo=${encodeURIComponent(url.pathname)}`);
  }
});
// server/api/protected.ts - API endpoint protection
export default defineEventHandler(async (event) => {
  const auth0Client = useAuth0(event);
  const session = await auth0Client.getSession();

  if (!session) {
    throw createError({
      statusCode: 401,
      statusMessage: 'Unauthorized'
    });
  }

  return { data: 'protected data' };
});

For role-based, permission-based, and advanced patterns: route-protection.md

Session Management

Stateless (Default)

Uses encrypted, chunked cookies. No configuration needed.

Stateful (Redis, MongoDB, etc.)

For larger sessions or distributed systems:

// nuxt.config.ts
modules: [
  ['@auth0/auth0-nuxt', {
    sessionStoreFactoryPath: '~/server/utils/session-store-factory.ts'
  }]
]

For complete session store implementations, see: session-stores.md

API Integration

Configure audience for API access tokens:

// nuxt.config.ts
runtimeConfig: {
  auth0: {
    audience: 'https://your-api-identifier',
  }
}

Retrieve tokens server-side:

// server/api/call-api.ts
export default defineEventHandler(async (event) => {
  const auth0Client = useAuth0(event);
  const { accessToken } = await auth0Client.getAccessToken();

  return await $fetch('https://api.example.com/data', {
    headers: {
      Authorization: `Bearer ${accessToken}`
    }
  });
});

Security Checklist

  • ✅ Server-side validation only (never trust useUser())
  • ✅ HTTPS in production
  • ✅ Strong session secret (openssl rand -hex 64)
  • ✅ Never commit .env files
  • ✅ Stateful sessions for PII/large data

Troubleshooting

ErrorSolution
"Module not found"Install @auth0/auth0-nuxt, not @auth0/auth0-vue
"Missing domain/clientId/clientSecret"Check NUXT_AUTH0_ prefix, .env location, runtimeConfig
"Redirect URI mismatch"Match Auth0 Dashboard callback to appBaseUrl + /auth/callback
"useAuth0 is not defined"Use only in server context with H3 event object
Cookies too largeUse stateful sessions or reduce scopes

Additional Resources

Guides: Route Protection PatternsCustom Session StoresCommon Examples

Related Skills

  • auth0-quickstart - Basic Auth0 setup
  • auth0-cli - Manage Auth0 resources from the terminal

Links: Auth0-Nuxt GitHubAuth0 DocsNuxt Modules

auth0 की और Skills

acul-screen-generator
auth0
पूर्ण, ब्रांडेड Auth0 Advanced Custom Universal Login (ACUL) स्क्रीन कार्यान्वयन उत्पन्न करता है, जो React या Vanilla JS SDK का उपयोग करता है। जब कोई डेवलपर पूछता है तो उपयोग करें…
official
auth0-android
auth0
Android अनुप्रयोगों (Kotlin/Java) में Web Auth, बायोमेट्रिक-संरक्षित क्रेडेंशियल्स और MFA के साथ प्रमाणीकरण जोड़ते समय उपयोग करें - एकीकृत करता है…
official
auth0-angular
auth0
एंगुलर एप्लिकेशन में रूट गार्ड और HTTP इंटरसेप्टर के साथ प्रमाणीकरण जोड़ते समय उपयोग करें - SPA के लिए @auth0/auth0-angular SDK को एकीकृत करता है
official
auth0-aspnetcore-api
auth0
ASP.NET Core Web API एंडपॉइंट्स को JWT Bearer टोकन सत्यापन, स्कोप/अनुमति जांच, या स्टेटलेस प्रमाणीकरण से सुरक्षित करते समय उपयोग करें - एकीकृत करता है…
official
auth0-cli
auth0
Auth0 CLI कमांड्स के लिए संदर्भ — ऐप्स, एपीआई, उपयोगकर्ता, भूमिकाएँ, संगठन, क्रियाएँ, लॉग, कस्टम डोमेन, यूनिवर्सल-लॉगिन, टेराफॉर्म, रॉ एपीआई मोड, और --json…
official
auth0-expo
auth0
एक्सपो (React Native) मोबाइल ऐप्स में प्रमाणीकरण जोड़ते समय उपयोग करें — लॉगिन, लॉगआउट, उपयोगकर्ता सत्र, संरक्षित रूट, बायोमेट्रिक्स, या टोकन प्रबंधन। एकीकृत करता है…
official
auth0-express
auth0
एक्सप्रेस.जेएस वेब एप्लिकेशन में प्रमाणीकरण (लॉगिन, लॉगआउट, संरक्षित रूट) जोड़ते समय उपयोग करें - सत्र-आधारित प्रमाणीकरण के लिए express-openid-connect को एकीकृत करता है।
official
auth0-fastapi-api
auth0
जब FastAPI API एंडपॉइंट्स को JWT Bearer टोकन सत्यापन, स्कोप/अनुमति जांच, या स्टेटलेस प्रमाणीकरण से सुरक्षित करना हो - REST के लिए auth0-fastapi-api को एकीकृत करता है…
official