Redis client initialization Issue in Node Js application

I have a simple backend application built with Node.js.
The directory structure as below

and this is GitHub Repository Link
here below is the code of server.js file

// server.js
const express = require('express');
const bodyParser = require('body-parser');
const dotenv = require('dotenv');
dotenv.config();

const app = express();
const port = process.env.PORT || 3000;

app.use(bodyParser.json());

try {
    // Import routes
    const adminRoutes = require('./routes/adminRoutes');

    // Use routes
    app.use('/api/admins', adminRoutes);  // Correct base URL for admin routes
   
} catch (error) {
    console.log(error);
}

app.listen(port, () => {
    console.log(`Server running on port ${port}`);
});

and redisClient.js file

const redis = require('redis');
const dotenv = require('dotenv');
dotenv.config();

var redisClient;

const initializeRedisClient = () => {
    if (!redisClient) {
        redisClient = redis.createClient();
        redisClient.on('error', (err) => console.log('Redis Client Error:', err));
        redisClient.on('connect', () => console.log('Connected to Redis'));
        redisClient.on('end', () => console.log('Redis client disconnected'));
        redisClient.on('reconnecting', () => console.log('Redis client reconnecting'));
    }
    return redisClient;
};

module.exports = initializeRedisClient;

The issue comes when I try to request API which are using middleware of checkBlacklist.

Below is the issue

C:workshopNode
JSecommerce-apinode_modules@redisclientdistlibclientindex.js:510
return Promise.reject(new errors_1.ClientClosedError());
^

ClientClosedError: The client is closed
at Commander._RedisClient_sendCommand (C:workshopNode JSecommerce-apinode_modules@redisclientdistlibclientindex.js:510:31)
at Commander.commandsExecutor (C:workshopNode JSecommerce-apinode_modules@redisclientdistlibclientindex.js:190:154)
at BaseClass. [as get] (C:workshopNode JSecommerce-apinode_modules@redisclientdistlibcommander.js:8:29)
at checkBlacklist (C:workshopNode JSecommerce-apiroutesadminRoutes.js:14:21)
at Layer.handle [as handle_request] (C:workshopNode JSecommerce-apinode_modulesexpresslibrouterlayer.js:95:5)
at next (C:workshopNode JSecommerce-apinode_modulesexpresslibrouterroute.js:149:13)
at C:workshopNode JSecommerce-apimiddlewaresauthMiddleware.js:13:17
at C:workshopNode JSecommerce-apinode_modulesjsonwebtokenverify.js:261:12
at getSecret (C:workshopNode JSecommerce-apinode_modulesjsonwebtokenverify.js:97:14)
at module.exports [as verify] (C:workshopNode JSecommerce-apinode_modulesjsonwebtokenverify.js:101:10)

It looks like redis client connection is getting lost. Can someone please let me know what should I change in the code?

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật