2 Repos
Specific implementation of sign-in and sign-out patterns and route protection for a framework.
Distinct from Next.js Integrations: Focuses on the authentication lifecycle and route protection specifically, not general third-party service integration.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Authentication Workflows. Refine with filters or upvote what's useful.
iron-session is a stateless session management library for JavaScript that stores encrypted and signed session data directly in browser cookies. It functions as authentication middleware to verify user identity without requiring a server-side database or network lookups for session retrieval. The project provides a symmetric key encryption tool that supports versioned password rotation. This allows encryption keys to be updated across a system without invalidating active user sessions. Beyond session management, the library includes utilities to seal arbitrary data objects into secure signed
Provides a secure authentication and state persistence workflow specifically for Next.js applications.
next-iron-session ist eine Session-Management-Bibliothek für Next.js-Anwendungen, die den verschlüsselten Benutzerstatus in sicheren Browser-Cookies speichert. Dieses System ermöglicht zustandsloses Session-Management, wodurch Anwendungen die Benutzeridentität ohne serverseitige Datenbank für das Session-Tracking verwalten können. Das Projekt bietet Utilities zur Sicherung von Daten-Payloads durch symmetrische Verschlüsselung und Signierung, einschließlich Unterstützung für versionierte Key-Rotation. Es enthält Tools für passwortlose Authentifizierung via sicherer Magic-Links und die Integration externer Identitätsanbieter über OAuth-Workflows. Die Bibliothek deckt breite Funktionsbereiche ab, darunter den Schutz von Routen durch Middleware, das Session-Lifecycle-Management für Login- und Logout-Flows sowie die Generierung versiegelter Tokens für sichere Redirects.
Manages user login and logout flows and protects restricted routes within Next.js applications.