Overview
Supersaas provides a robust and flexible authentication system built on top of nuxt-auth-utils, created by Atinux (creator of Nuxt). The system supports multiple authentication methods to accommodate different user preferences and security requirements.
Supported Authentication Methods
- Email/Password Authentication
- Magic Link Authentication
- Passkey (WebAuthn) Authentication
- Phone Number Authentication (SMS OTP)
- Social Authentication (Google, GitHub, Discord)
Core Authentication Components
Auth Composable
The useAuth
composable (app/composables/useAuth.ts) serves as the central authentication service, providing methods for:
- User registration
- Email/password login
- Password reset
- Email verification
- Error handling with toast notifications
const {
login,
logout,
register,
forgotPassword,
resetPassword,
resendVerification,
} = useAuth();
Session Management
User sessions are managed through useUserSession composable provided by nuxt-auth-utils. The session includes:
- User authentication state
- User profile information
- Session persistence
- Auto-refresh capabilities
Example usage:
const { user, loggedIn, fetch: refreshSession } = useUserSession();
Auth Middleware
The authentication system includes middleware to protect routes and handle authentication state:
// Example of using auth middleware
definePageMeta({
middleware: ["auth"],
});
User Account Management
The useUserAccount
composable provides functionality for managing user account settings:
const { updateUser, updatePassword, loading } = useUserAccount();
Features:
- Update user profile information
- Change password
- Form validation using Zod schemas
- Loading states for async operations
- Toast notifications for success/error feedback
Team Management
The useTeam
composable handles team-related authentication and management:
const { currentTeam, isTeamOwner, teams } = useTeam();
Features:
- Team membership management
- Team ownership verification
- Team slug-based routing
- Team data fetching and caching
Error Handling
The authentication system includes comprehensive error handling:
- Form validation errors using Zod schemas
- API error responses with descriptive messages
- Toast notifications for user feedback
- Special handling for unverified email accounts
- OAuth provider-specific error messages
Security Features
- Password Hashing
- Email Verification
- Session Management
- Rate Limiting
- CSRF Protection
- Secure Cookie Handling
- OAuth State Validation
Best Practices
- Always use the provided composables (
useAuth
,useUserAccount
,useTeam
) instead of direct API calls - Implement proper form validation using the provided Zod schemas
- Handle loading states appropriately
- Use toast notifications for user feedback
- Implement proper error handling
- Use middleware for protected routes
- Follow the established authentication flows for each method
Configuration
The authentication system can be configured through:
- Environment Variables
- Runtime Config
- OAuth Provider Settings
- Email Templates
- Session Settings