etherCorps / SK-Redis-SessionManager

Redis integration in SvelteKit for Session Management
https://sk-vercel-ioredis.vercel.app/
MIT License
25 stars 3 forks source link
redis-session sveltekit sveltekit-redis-session

Contributors Forks Stargazers Issues MIT License LinkedIn


Logo

SvelteKit Redis Session Manager

Redis integration in SvelteKit for Session Management
@ethercorps/sveltekit-redis-session
Explore the docs »

View Demo · Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. Roadmap
  5. License
  6. Contact
  7. Acknowledgments

About The Project

"SvelteKit-Redis-Session" stands out as an indispensable tool for developers aiming to seamlessly integrate Redis as a session manager within their SvelteKit applications. Designed with a keen attention to detail, this package ensures that managing user sessions is not only efficient but also intuitive.

(back to top)

Key Features

Built With

(back to top)

Getting Started

This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.

Prerequisites

This is an example of how to list things you need to use the software and how to install them.

Setup

  1. First, we need to make instance of it to use everywhere in the project.

    import { IoRedisSessionStore } from '@ethercorps/SvelteKit-redis-session';
    import Redis from 'ioredis';
    export const sessionManager = new IoRedisSessionStore({
    redisClient: new Redis(), // Required A pre-initiated redis client
    secret: 'your-secret-key', // Required A secret key for encryption and other things,
    cookieName: 'session', // CookieName to be saved in cookies for browser Default session
    prefix: 'sk-session', // Prefix for Redis Keys Default sk-session
    signed: true, // Do you want to sign your cookies Default true
    encrypted: false, // Do you want to encrypt your cookies using 'aes-256-cbc' algorithm Default false
    useTTL: true, // Do you wanna use redis's Expire key functionality Default false
    renewSessionBeforeExpire: false, // Do you wanna update session expire time in built function Default false
    renewBeforeSeconds: 30 * 60, // If renewSessionBeforeExpire is true define your renew before time in seconds Default 30 minutes
    serializer: JSON, // You can define your own serializer functions to stringify and parse sessionData for redis Default JSON
    cookiesOptions: {
        path: '/',
        httpOnly: true,
        sameSite: 'strict',
        secure: !dev, // From SvelteKit "$app/environment"
        maxAge: 60 * 60 * 24 // You have to define time in seconds and it's also used for redis key expiry time
    } // You have more options these are default used in package for more check sveltekit CookieSerializeOptions type.
    });

    These are the default config example you can use as per your need and make it better for your use. I have written an article to explain more about this package link for article.

  2. To create a new session and add cookies for user after authentication

    // Example it's a +page.server.ts
    import sessionManager from 'sessionManagerFile';
    
    export const actions: Actions = {
    login: async ({ req, cookies, locals }) => {
        const formdata = await request.formData();
        // Form validation && user validation
        const { data, error, message } = sessionManager.createSession(cookies, userData, userId);
        // data is the value we added to cookies, check for error which is a boolean and message.
        /* add data to locals too for accessing data from client */
        throw redirect(307, '/dashboard');
    }
    };
  3. To get session data for the cookie

    /* hooks.server.ts */
    import sessionManager from 'sessionManagerFile';
    
    export const handle: Handle = async ({ event, resolve }) => {
    /* your validation logic */
    const { data, error, message } = sessionManager.getSession(event.cookies);
    // data is the User session data we saved to redis while login, check for error which is a boolean and message.
    /* do error check and then set data to locals as per your logic */
    };
  4. To update session expiry in redis and cookies

    // in any server side file or endpoint where you can access browser cookies
    import sessionManager from 'sessionManagerFile';
    const { data, error, message } = await sessionManager.updateSessionExpiry(cookies);
    // data is going to be null or key which is updated, error is a boolean value and message a string
  5. To update session data in redis and cookies

    // in any server side file or endpoint where you can access browser cookies
    import sessionManager from 'sessionManagerFile';
    const { data, error, message } = await sessionManager.updateSession(cookies, newSessionData);
    // data is going to be null or key which is updated, error is a boolean value and message a string
  6. To delete session from redis and cookie from browser

    // Example it's a +page.server.ts
    
    import sessionManager from 'sessionManagerFile';
    export const actions: Actions = {
    logout: async ({ cookies, locals }) => {
        const { data, error, message } = await sessionManager.deleteSession(cookies);
        // data is the value we deleted key, check for error which is a boolean and message.
        /* clear your locals too */
        throw redirect(307, '/login');
    }
    };
  7. To get all sessions of a user from redis and cookie from browser

    // Example it's a +server.ts
    
    import sessionManager from 'sessionManagerFile';
    
    export const GET: RequestHandler = async ({ cookies, locals }) => {
        const { data, error, message } = await sessionManager.getSessionsByUserId(userId);
        // data is the session data array, check for error which is a boolean and message.
        /* clear your locals too */
        return json({data})
    }
    };

    (back to top)

Usage

Examples are going to be added soon.

For more examples, please refer to the Examples

(back to top)

Roadmap

See the open issues for a full list of proposed features (and known issues).

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)

Contact

Your Name - @theether0 - meenashivam9650@gmail.com

Project Link: https://github.com/etherCorps/SK-Redis-SessionManager

(back to top)

Acknowledgments

(back to top)