{"id":23145812,"url":"https://github.com/chqrd/nest-redis","last_synced_at":"2026-04-18T01:05:17.933Z","repository":{"id":268530670,"uuid":"904652183","full_name":"chqrd/nest-redis","owner":"chqrd","description":"Redis-Client-Module for NestJS","archived":false,"fork":false,"pushed_at":"2024-12-17T10:17:36.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-04T12:52:02.076Z","etag":null,"topics":["nestjs","redis"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chqrd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-17T09:54:10.000Z","updated_at":"2024-12-17T10:17:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"fb601c60-e932-460a-99b1-0abe2ae756bc","html_url":"https://github.com/chqrd/nest-redis","commit_stats":null,"previous_names":["chqrd/nest-redis"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chqrd/nest-redis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chqrd%2Fnest-redis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chqrd%2Fnest-redis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chqrd%2Fnest-redis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chqrd%2Fnest-redis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chqrd","download_url":"https://codeload.github.com/chqrd/nest-redis/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chqrd%2Fnest-redis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31952208,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"ssl_error","status_checked_at":"2026-04-18T00:39:20.671Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["nestjs","redis"],"created_at":"2024-12-17T16:16:32.481Z","updated_at":"2026-04-18T01:05:17.925Z","avatar_url":"https://github.com/chqrd.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nest-redis\n\nThis NestJS module adds a Redis connection to your project.\n\n## Installation\n\n```typescript\nimport { RedisModule } from \"@chqrd/nest-redis\";\nimport { Module } from \"@nestjs/common\";\n\n@Module({\n  imports: [\n    RedisModule.registerAsync({\n      imports: [ConfigModule],\n      inject: [ConfigService],\n      useFactory: async (config) =\u003e ({ url: config.getOrThrow(\"REDIS_URL\", \"redis://localhost:6379\") }),\n    }),\n  ],\n})\nexport class AppModule {}\n```\n\n```typescript\n@Injectable()\nexport class RequestService {\n  constructor(private readonly redis: RedisService) {}\n\n  async getValue() {\n    return await this.redis.client.get(\"my_key\");\n  }\n}\n```\n\n### Project setup\n\n```bash\n$ npm install\n```\n\n### Compile and run the project\n\n```bash\n# development\n$ npm run start\n\n# watch mode\n$ npm run start:dev\n\n# production mode\n$ npm run start:prod\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchqrd%2Fnest-redis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchqrd%2Fnest-redis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchqrd%2Fnest-redis/lists"}