{"id":28061207,"url":"https://github.com/alloc/thin-redis","last_synced_at":"2025-05-14T16:19:52.822Z","repository":{"id":292188753,"uuid":"980134317","full_name":"alloc/thin-redis","owner":"alloc","description":"Redis/Valkey client for Node.js and Cloudflare Workers","archived":false,"fork":false,"pushed_at":"2025-05-12T16:55:15.000Z","size":253,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-13T15:19:31.371Z","etag":null,"topics":["cloudflare-workers","javascript","nodejs","redis","redis-client","typescript","valkey"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alloc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-05-08T16:07:41.000Z","updated_at":"2025-05-12T16:55:18.000Z","dependencies_parsed_at":"2025-05-13T15:18:51.033Z","dependency_job_id":null,"html_url":"https://github.com/alloc/thin-redis","commit_stats":null,"previous_names":["alloc/thin-redis"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alloc%2Fthin-redis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alloc%2Fthin-redis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alloc%2Fthin-redis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alloc%2Fthin-redis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alloc","download_url":"https://codeload.github.com/alloc/thin-redis/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253969297,"owners_count":21992265,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cloudflare-workers","javascript","nodejs","redis","redis-client","typescript","valkey"],"created_at":"2025-05-12T09:52:36.477Z","updated_at":"2025-05-14T16:19:52.798Z","avatar_url":"https://github.com/alloc.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# thin-redis\n\nRedis/Valkey client for Node.js and Cloudflare Workers.\n\n- Modular design: choose which commands you need\n- Impeccable TypeScript support\n- Runtime type validation with `@sinclair/typebox`\n- Install `@arrowood.dev/socket` for Node.js support\n- Binary values with `sendRaw`\n- Secure connection with TLS and Authentication\n- RESP2 parser / serializer\n\n## Supported features\n\n**Most commands are not implemented yet.**\n\nSupported features include:\n\n- [x] CRUD operations\n- [ ] [Pub/Sub](https://redis.io/docs/latest/develop/interact/pubsub/) (basic)\n  - [x] [Key-space notifications](https://redis.io/docs/latest/develop/use/keyspace-notifications/)\n  - [x] [Key-event notifications](https://redis.io/docs/latest/develop/use/keyspace-notifications/)\n- [ ] [Streams](https://redis.io/docs/latest/develop/data-types/streams/) (basic)\n- [ ] [JSON](https://redis.io/docs/latest/develop/data-types/json/) (basic)\n- [ ] [Hashes](https://redis.io/docs/latest/develop/data-types/hashes/) (basic)\n- [ ] [Sets](https://redis.io/docs/latest/develop/data-types/sets/) (basic)\n- [ ] [Full-text search](https://redis.io/docs/latest/develop/interact/search-and-query/query/full-text/) (basic)\n\n## Commands\n\nContributions welcome! Only the commands I've needed so far are implemented.\n\n- [DECR](https://redis.io/docs/latest/commands/DECR/)\n- [DECRBY](https://redis.io/docs/latest/commands/DECRBY/)\n- [DEL](https://redis.io/docs/latest/commands/DEL/)\n- [EXPIRE](https://redis.io/docs/latest/commands/EXPIRE/)\n- [FLUSHALL](https://redis.io/docs/latest/commands/FLUSHALL/)\n- [FT.CREATE](https://redis.io/docs/latest/commands/FT.CREATE/)\n- [FT.SEARCH](https://redis.io/docs/latest/commands/FT.SEARCH/)\n- [GET](https://redis.io/docs/latest/commands/GET/)\n- [GETEX](https://redis.io/docs/latest/commands/GETEX/)\n- [HGET](https://redis.io/docs/latest/commands/HGET/)\n- [HSET](https://redis.io/docs/latest/commands/HSET/)\n- [INCR](https://redis.io/docs/latest/commands/INCR/)\n- [INCRBY](https://redis.io/docs/latest/commands/INCRBY/)\n- [JSON.GET](https://redis.io/docs/latest/commands/JSON.GET/)\n- [JSON.SET](https://redis.io/docs/latest/commands/JSON.SET/)\n- [KEYS](https://redis.io/docs/latest/commands/KEYS/)\n- [PING](https://redis.io/docs/latest/commands/PING/)\n- [PUBLISH](https://redis.io/docs/latest/commands/PUBLISH/)\n- [SADD](https://redis.io/docs/latest/commands/SADD/)\n- [SCARD](https://redis.io/docs/latest/commands/SCARD/)\n- [SDIFF](https://redis.io/docs/latest/commands/SDIFF/)\n- [SET](https://redis.io/docs/latest/commands/SET/)\n- [SINTER](https://redis.io/docs/latest/commands/SINTER/)\n- [SISMEMBER](https://redis.io/docs/latest/commands/SISMEMBER/)\n- [SMEMBERS](https://redis.io/docs/latest/commands/SMEMBERS/)\n- [SPOP](https://redis.io/docs/latest/commands/SPOP/)\n- [SREM](https://redis.io/docs/latest/commands/SREM/)\n- [SUNION](https://redis.io/docs/latest/commands/SUNION/)\n- [XACK](https://redis.io/docs/latest/commands/XACK/)\n- [XADD](https://redis.io/docs/latest/commands/XADD/)\n- [XDEL](https://redis.io/docs/latest/commands/XDEL/)\n- [XGROUP.CREATE](https://redis.io/docs/latest/commands/XGROUP.CREATE/)\n- [XREAD](https://redis.io/docs/latest/commands/XREAD/)\n- [XREADGROUP](https://redis.io/docs/latest/commands/XREADGROUP/)\n\n## Thanks\n\nThis package is a fork of [redis-on-workers](https://github.com/kane50613/redis-on-workers) by [@kane50613](https://github.com/kane50613).\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falloc%2Fthin-redis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falloc%2Fthin-redis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falloc%2Fthin-redis/lists"}