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