dt-koa-redis
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

koa-redis

koa-redis is a redis middleware for koa@2, inspired by koa-mongo middleware https://github.com/nswbmw/koa-mongo. It's written in Typescript and support koa2 async / await syntax.

It provides a promisified wrapper for node-redis client using bluebird.

Usage

import koaRedis from 'dt-koa-redis';

app.use(koaRedis({
  host: '127.0.0.1',
  port: 6379,
  maxConnections: 100,
  minConnections: 1,
}));

app.use(async (ctx, next) => {
  try {

    const data = await ctx.redis.getAsync('test');
    const write = 'testing';

    await ctx.redis.setAsync('test_key',write);
  } catch(err) {
    debug(err);
  }
});

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i dt-koa-redis

Weekly Downloads

2

Version

1.1.0

License

MIT

Unpacked Size

13 kB

Total Files

8

Last publish

Collaborators

  • duongtran