1 Repo
Standardized APIs that allow session management systems to plug into various storage backends.
Distinct from In-Memory Session Stores: Focuses on the abstract interface/API for storage rather than a specific storage implementation like In-Memory or MongoDB.
Explore 1 awesome GitHub repository matching data & databases · Session Store Interfaces. Refine with filters or upvote what's useful.
This is a server-side session manager and middleware for Express applications. It maintains persistent user state across multiple HTTP requests by linking a unique session identifier stored in a browser cookie to data stored on the server. The project utilizes a standardized session store interface, allowing the connection of session data to external databases or in-memory caches. It includes mechanisms for session fixation protection through the regeneration of session identifiers. The system covers the management of user sessions, including the configuration of session cookies, the ability
Provides a standardized session store interface to connect session data to external databases or in-memory caches.