node_redis, as you may have guessed, is the Redis client for Node.js. You can install it via npm using the following command.
npm install redis
Once you have installed node_redis module you are good to go. Let’s create a simple file, app.js, and see how to connect with Redis from Node.js.
app...