authomatic-redis

1.0.1 • Public • Published

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}}

Package Sidebar

Install

npm i authomatic-redis

Weekly Downloads

5

Version

1.0.1

License

MIT

Unpacked Size

10.8 kB

Total Files

8

Last publish

Collaborators

  • amri
  • warp-admin