Redis store for Authomatic
npm install authomatic-redis
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
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}}