2 रिपॉजिटरी
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 JavaScript के लिए एक स्टेटलेस सत्र प्रबंधन लाइब्रेरी है जो एन्क्रिप्टेड और हस्ताक्षरित सत्र डेटा को सीधे ब्राउज़र कुकीज़ में संग्रहीत करती है। यह सत्र पुनर्प्राप्ति के लिए सर्वर-साइड डेटाबेस या नेटवर्क लुकअप की आवश्यकता के बिना उपयोगकर्ता पहचान को सत्यापित करने के लिए प्रमाणीकरण मिडलवेयर के रूप में कार्य करती है। प्रोजेक्ट एक सममित कुंजी एन्क्रिप्शन टूल प्रदान करता है जो वर्ज़न्ड पासवर्ड रोटेशन का समर्थन करता है। यह सक्रिय उपयोगकर्ता सत्रों को अमान्य किए बिना सिस्टम में एन्क्रिप्शन कुंजियों को अपडेट करने की अनुमति देता है। सत्र प्रबंधन से परे, लाइब्रेरी में मनमाने डेटा ऑब्जेक्ट को सुरक्षित हस्ताक्षरित स्ट्रिंग्स में सील करने और यह सुनिश्चित करने के लिए उन्हें अनसील करने के लिए उपयोगिताएँ शामिल हैं कि सामग्री के साथ छेड़छाड़ नहीं की गई है। ये क्षमताएं सुरक्षित टोकन और मैजिक लॉगिन लिंक के निर्माण का समर्थन करती हैं।
Provides a secure authentication and state persistence workflow specifically for Next.js applications.
next-iron-session is a session management library for Next.js applications that stores encrypted user state in secure browser cookies. This system enables stateless session management, allowing applications to maintain user identity without requiring a server-side database for session tracking. The project provides utilities for securing data payloads through symmetric-key encryption and signing, including support for versioned encryption key rotation. It includes tools for implementing passwordless authentication via secure one-time magic links and integrating external identity providers thr
Manages user login and logout flows and protects restricted routes within Next.js applications.