├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── index.ts ├── lib ├── index.ts ├── interfaces │ ├── index.ts │ └── redis-module-options.interface.ts ├── redis-cache.helper.ts ├── redis.constants.ts ├── redis.decorator.ts └── redis.module.ts ├── package.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './dist'; 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/index.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | export * from './dist'; 2 | -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from './redis-module-options.interface'; 2 | -------------------------------------------------------------------------------- /lib/interfaces/redis-module-options.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/lib/interfaces/redis-module-options.interface.ts -------------------------------------------------------------------------------- /lib/redis-cache.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/lib/redis-cache.helper.ts -------------------------------------------------------------------------------- /lib/redis.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/lib/redis.constants.ts -------------------------------------------------------------------------------- /lib/redis.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/lib/redis.decorator.ts -------------------------------------------------------------------------------- /lib/redis.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/lib/redis.module.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsoft/nestjs-redis/HEAD/tsconfig.json --------------------------------------------------------------------------------