Auth
ECHO
const response = await redis.echo("hello world");
console.log(response); // "hello world"
Returns a message back to you. Useful for debugging the connection.
Arguments
message
string
requiredA message to send to the server.
Response
The same message you sent.
const response = await redis.echo("hello world");
console.log(response); // "hello world"