The channel to publish to.
const subscription = redis.subscribe(["my-channel"]);const messages = [];subscription.on("message", (data) => { messages.push(data.message);});