skip to Main Content

Use fastify-redis from controllers in node.js

How to use fastify-redis plugin from other controllers or other.js while declaring the redis connection in server.js server.js const fastify = require('fastify')({ logger: false }) const routes = require('./routes') fastify.register(require('fastify-redis'), { host: '127.0.0.1' }) routes.forEach((route, index) => { fastify.route(route) })…

VIEW QUESTION
Back To Top
Search