
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@auth0/ai-redis
Advanced tools
@auth0/ai-redis is a secure Redis-based data store implementation for the Auth0 AI SDK.
[!WARNING]
@auth0/ai-redisis currently under heavy development. We strictly follow Semantic Versioning (SemVer), meaning all breaking changes will only occur in major versions. However, please note that during this early phase, major versions may be released frequently as the API evolves. We recommend locking versions when using this in production.
$ npm install @auth0/ai-redis
Initialize the Redis store and use it with the Auth0 AI SDK:
import { RedisStore } from "@auth0/ai-redis";
import { Auth0AI } from "@auth0/ai-vercel"; //or ai-langchain, etc.
const auth0AI = new Auth0AI({
store: new RedisStore({
encryption: {
key: "YOUR_ENCRYPTION_KEY",
alg: "aes-256-cbc",
},
}),
});
The RedisStore constructor accepts the following options:
ioredis client instance.key: The encryption key (required if encryption is provided).alg: The encryption algorithm. Supported values are aes-256-cbc, aes-192-cbc, and aes-128-cbc. Defaults to aes-256-cbc.Alternatively, you can pass a configuration object compatible with ioredis to initialize a new Redis client.
import { Redis } from "ioredis";
import { RedisStore } from "@auth0/ai-redis";
const redisClient = new Redis();
const store = new RedisStore({
client: redisClient, //Optional: Default to `new Redis()`
encryption: {
key: "YOUR_ENCRYPTION_KEY",
},
});
We appreciate feedback and contributions to this repo! Before you get started, please see the following:
To provide feedback or report a bug, please raise an issue on our issue tracker.
Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout Why Auth0?
This project is licensed under the Apache 2.0 license. See the LICENSE file for more info.
FAQs
Auth0 AI ioredis Data Store implementation
The npm package @auth0/ai-redis receives a total of 25 weekly downloads. As such, @auth0/ai-redis popularity was classified as not popular.
We found that @auth0/ai-redis demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 45 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.