oauth2-server-redis

1.4.0 • Public • Published

oauth2-server-redis

Build Status Download Status Sponsor on GitHub

Redis storage backend for oauth2-server

Features

  • Stores the following in Redis:
    • Access tokens
    • Refresh tokens
    • Authorization codes
  • Uses HMSET to store all data as keys (the token or code is the hash)
  • Respects TTL settings so that entries expire at the right time

Requirements

Installation

$ npm install --save @compwright/oauth2-server oauth2-server-redis redis

Usage

const OAuth2Server = require('@compwright/oauth2-server');
const redisStore = require('oauth2-server-redis');
const redis = require('redis');

const oauth = new OAuth2Server({
    model: {
        ...redisStore({
            redis: redis.createClient()
        })
    }
});

License

MIT license

/oauth2-server-redis/

    Package Sidebar

    Install

    npm i oauth2-server-redis

    Weekly Downloads

    4

    Version

    1.4.0

    License

    MIT

    Unpacked Size

    7.29 kB

    Total Files

    4

    Last publish

    Collaborators

    • compwright