├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .remarkignore ├── .travis.yml ├── HISTORY.md ├── LICENSE ├── README.md ├── benchmark ├── connect.js ├── koa.js └── readme.md ├── package.json ├── src └── index.js ├── test ├── async.test.js └── koa-redis.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.remarkignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/.remarkignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/benchmark/connect.js -------------------------------------------------------------------------------- /benchmark/koa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/benchmark/koa.js -------------------------------------------------------------------------------- /benchmark/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/benchmark/readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/src/index.js -------------------------------------------------------------------------------- /test/async.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/test/async.test.js -------------------------------------------------------------------------------- /test/koa-redis.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/test/koa-redis.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koajs/koa-redis/HEAD/yarn.lock --------------------------------------------------------------------------------