{"id":22377714,"url":"https://github.com/someimportantcompany/redyn","last_synced_at":"2026-04-12T15:46:38.602Z","repository":{"id":42670772,"uuid":"329457615","full_name":"someimportantcompany/redyn","owner":"someimportantcompany","description":"Promise-first Redis-implementation for NodeJS backed by DynamoDB","archived":false,"fork":false,"pushed_at":"2023-04-04T08:13:06.000Z","size":494,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-15T04:07:03.194Z","etag":null,"topics":["amazon","aws","dynamo","dynamodb","key-value","redis"],"latest_commit_sha":null,"homepage":"https://someimportantcompany.github.io/redyn/","language":"JavaScript","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/someimportantcompany.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}},"created_at":"2021-01-13T23:33:28.000Z","updated_at":"2023-04-03T08:03:06.000Z","dependencies_parsed_at":"2024-11-20T10:46:30.804Z","dependency_job_id":"db5395c4-4faa-4619-b608-f8bfa85c7a50","html_url":"https://github.com/someimportantcompany/redyn","commit_stats":{"total_commits":57,"total_committers":1,"mean_commits":57.0,"dds":0.0,"last_synced_commit":"40b1f4ab7f8070ca7832aee41ec55632785bc8a4"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/someimportantcompany%2Fredyn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/someimportantcompany%2Fredyn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/someimportantcompany%2Fredyn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/someimportantcompany%2Fredyn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/someimportantcompany","download_url":"https://codeload.github.com/someimportantcompany/redyn/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245709172,"owners_count":20659669,"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":["amazon","aws","dynamo","dynamodb","key-value","redis"],"created_at":"2024-12-04T22:15:20.452Z","updated_at":"2026-04-12T15:46:33.548Z","avatar_url":"https://github.com/someimportantcompany.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![NPM](https://badge.fury.io/js/redyn.svg)](https://npm.im/redyn)\n[![CI](https://github.com/someimportantcompany/redyn/workflows/Test/badge.svg?branch=master)](https://github.com/someimportantcompany/redyn/actions?query=branch%3Amaster)\n[![Coverage](https://coveralls.io/repos/github/someimportantcompany/redyn/badge.svg)](https://coveralls.io/github/someimportantcompany/redyn)\n\nPromise-first [Redis](https://redis.io)-implementation for [NodeJS](https://nodejs.org) backed by [DynamoDB](https://aws.amazon.com/dynamodb).\n\n```js\nconst redyn = require('redyn');\n// Specify your DynamoDB table\nconst client = redyn.createClient('redyn-example-table');\n\n// Start executing Redis commands!\nawait client.set('users:1', JSON.stringify({ id: 1, name: 'Barry Allen' }));\nawait client.set('users:2', JSON.stringify({ id: 2, name: 'Iris West' }));\nawait client.set('users:3', JSON.stringify({ id: 3, name: 'Cisco Ramon' }));\nawait client.set('users:4', JSON.stringify({ id: 4, name: 'Caitlin Snow' }));\nawait client.set('users:5', JSON.stringify({ id: 5, name: 'Harrison Wells' }));\n\nconst user = await client.get('users:1');\nconsole.log(JSON.parse(user));\n// { id: 1,\n//   name: 'Barry Allen' }\n\n\nawait client.rpush('users', 1, 2, 3, 3, 4, 4, 5);\nawait client.lpush('users', 0);\n\nconst userIDs = await client.lrange('users', 0, -1);\nconsole.log(JSON.parse(userIDs));\n// [ 0, 1, 2, 3, 3, 4, 4, 5 ]\n\n\nawait client.sadd('users:unique', 1, 2, 3, 3, 4, 4, 5);\n\nconst uniqueUserIDs = await client.smembers('users:unique');\nconsole.log(JSON.parse(uniqueUserIDs));\n// [ 1, 2, 3, 4, 5 ]\n```\n\nThis library is designed to use DynamoDB as a simple cache store - using a combination of DynamoDB patterns \u0026 expressions to store data in a similar pattern to Redis. There are various drawbacks, which are noted in the [Documentation](#documentation) below.\n\n## Installation\n\n```\nnpm install --save redyn\n```\n\n## Documentation\n\n- [Getting Started](https://someimportantcompany.com/redyn/Getting-Started.html)\n- [Using Strings](https://someimportantcompany.com/redyn/Using-Strings.html)\n- [Using Lists](https://someimportantcompany.com/redyn/Using-Lists.html)\n- [Using Hashmaps](https://someimportantcompany.com/redyn/Using-Hashmaps.html)\n- [Using Sets](https://someimportantcompany.com/redyn/Using-Sets.html)\n- [Transactions](https://someimportantcompany.com/redyn/Transactions.html)\n- [Other Methods](https://someimportantcompany.com/redyn/Other-Methods.html)\n\n## Development\n\n- All major work should be in feature branches, include tests \u0026 finish with a PR into `master`.\n- This README should is stored in Git, alongside code, therefore as code changes so should the documentation!\n- This also means that documentation for older tags/versions is available at all times.\n- To run tests, fire up [`amazon/dynamodb-local`](https://hub.docker.com/r/amazon/dynamodb-local):\n  ```\n  docker run --rm -d --name dynamodb -p 8000:8000 amazon/dynamodb-local\n  ```\n  - If you've not read through them, take note of [the differences](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.UsageNotes.html#DynamoDBLocal.Differences) between the production AWS DynamoDB platform \u0026 local Docker container.\n\n---\n\nAny questions or suggestions please [open an issue](https://github.com/someimportantcompany/redyn/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsomeimportantcompany%2Fredyn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsomeimportantcompany%2Fredyn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsomeimportantcompany%2Fredyn/lists"}