Package Exports
- secure-store-redis
- secure-store-redis/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (secure-store-redis) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
secure-store-redis
A simple wrapper to encrypt and decrypt data stored in redis. The main point is to ensure that any data you store in redis cannot be accessed by anyone else, without the key.
NOTE version 2.x
is a rewrite in TypeScript, using async functions, and is
backwards incompatible with 1.x
const SecureStore = require('secure-store-redis').default;
const store = new SecureStore('myApp:store', '823HD8DG26JA0LK1239Hgb651TWfs0j1', {
redis: {
host: 'localhost',
port: 6379, // optional
// optionally use the 'url' property to specify entire redis connect string
// url: 'redis://localhost:6379',
} // optional
});
await store.init();
await store.save('quote', 'i see dead people');
let res = await store.get('quote');
// res: 'i see dead people'
let res = await store.get('quote');
// res: null
const num = await store.delete('quote');
// num: 1
await store.save('quote', 'i see dead people again');
const otherStore = new SecureStore('myApp:store', 'this is the wrong secret', {
host: "127.0.0.1",
port: 6379
});
await otherStore.init();
let res = await otherStore.get('quote');
// res: undefined