1const redis = require('redis');
2const redisPassword = "password" ;
3const client = redis.createClient({
4 host : '127.0.0.1',
5 no_ready_check: true,
6 auth_pass: redisPassword,
7});
8