I created a Redis client in node.js using the "node_redis" npm module, which is a popular Redis client for the node, but this module does not support the latest Redis features like ACL (Access Control List). Is there any other library that supports all the features of Redis 6? if not then how to use Redis ACL feature in node apps
Asked
Active
Viewed 660 times
1 Answers
1
client['auth'] = null;
client.send_command('AUTH', ['<username>', '<password>'], redis.print);
Seen here : Connecting to managed redis with auth username/password nodejs