fastify-ioredis

0.1.1 • Public • Published

fastify-ioredis

js-standard-style

Fastify ioredis connection plugin, with this you can share the same Redis connection in every part of your server.

Under the hood the ioredis client is used, the options that you pass to register will be passed to the Redis client.

Install

npm i fastify-ioredis --save

Usage

Add it to you project with register and you are done!
You can access the Redis client via fastify.redis.client.

const fastify = require('fastify')
 
fastify.register(require('fastify-ioredis'), {
  host: '127.0.0.1'
}, err => {
  if (err) throw err
})
 
fastify.listen(3000, err => {
  if (err) throw err
  console.log(`server listening on ${fastify.server.address().port}`)
})

License

Licensed under MIT.

Package Sidebar

Install

npm i fastify-ioredis

Weekly Downloads

3

Version

0.1.1

License

MIT

Last publish

Collaborators

  • mahmed8003