Skip to content

Amri91/authomatic-redis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

authomatic-redis

Build Status Coverage Status

Redis store for Authomatic

install

npm install authomatic-redis

Usage

const Store = require('authomatic-redis');
// Store options
// Note: userIds cannot contain base strings
// const store = Store({redisOptions: {/*https://www.npmjs.com/package/redis*/}, baseString: 'String'})
// OR
// const redis = require('redisredis'),
// const store = Store({client: redis.createClient()});
const store = Store();
const Authomatic = require('authomatic');
const authomatic = Authomatic({store}); 
// authomatic is ready

// You many use the redis client if needed
// store.client.quit()
// Enjoy

Documentation

Store options:

  • @param {Object} [options.redisOptions] options to be passed directly to the redis client if you do not pass a redis client.
  • @param {Object} [options.client] redis client provided by the user.
  • @return {{remove, removeAll, add}}

About

Redis store for Authomatic

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published