{"id":13623273,"url":"https://github.com/flybondi/flynamo","last_synced_at":"2026-03-05T23:21:26.426Z","repository":{"id":40294676,"uuid":"139876109","full_name":"flybondi/flynamo","owner":"flybondi","description":"DynamoDB functional wrapper","archived":false,"fork":false,"pushed_at":"2024-08-02T20:22:37.000Z","size":1593,"stargazers_count":15,"open_issues_count":6,"forks_count":0,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-02-14T15:50:11.231Z","etag":null,"topics":["aws","dynamodb","hacktoberfest"],"latest_commit_sha":null,"homepage":"https://flybondi.github.io/flynamo/","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/flybondi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-05T16:38:43.000Z","updated_at":"2024-08-16T17:28:03.000Z","dependencies_parsed_at":"2024-01-14T06:54:10.819Z","dependency_job_id":"32522b1a-c5ed-4a09-89f6-60e824774fd6","html_url":"https://github.com/flybondi/flynamo","commit_stats":{"total_commits":55,"total_committers":8,"mean_commits":6.875,"dds":0.7818181818181819,"last_synced_commit":"583af19a21f1b532b374340aa51a0da6e73a5981"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flybondi%2Fflynamo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flybondi%2Fflynamo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flybondi%2Fflynamo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flybondi%2Fflynamo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flybondi","download_url":"https://codeload.github.com/flybondi/flynamo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240644229,"owners_count":19834386,"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":["aws","dynamodb","hacktoberfest"],"created_at":"2024-08-01T21:01:29.758Z","updated_at":"2026-03-05T23:21:26.361Z","avatar_url":"https://github.com/flybondi.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# @flybondi/flynamo\n\n[![CircleCI](https://circleci.com/gh/flybondi/flynamo/tree/develop.svg?style=svg)](https://circleci.com/gh/flybondi/flynamo/tree/develop)\n[![js-semistandard-style](https://img.shields.io/badge/code%20style-semistandard-brightgreen.svg?style=flat-square)](https://github.com/Flet/semistandard)\n[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)\n\nLet your [AWS][aws] [DynamoDB][dynamodb] client take off ✈️!\n\nRead [the docs][flynamo-jsdoc].\n\n- 🔧 **Simplifies** creating requests and parsing responses.\n- ✨ Automatic generation of `AWS.DynamoDB` attribute maps.\n- 💪 Supports all of `AWS.DynamoDB` API.\n- ✏️ Fully **typed** via [`d.ts` typings][typings].\n- ✨ **Infers** data types and conventional names for keys.\n- 💪 Import **single composable functions** for each `AWS.DynamoDB` operation.\n- 🙌 Plays well with functional libraries like [`ramda`][ramda] or [`lodash/fp`][lodashfp].\n\n```sh\n# Install the DynamoDb client from AWS SDK\nnpm i @aws-sdk/client-dynamodb\n\n# Install Flynamo\nnpm i @flybondi/flynamo\n```\n\n## Basic usage\n\nWrap an instance of an `AWS.DynamoDB` client with `flynamo` and you're good to go. The result will be an object exposing all of Flynamo's own API.\n\n```js\nconst { DynamoDB } = require('@aws-sdk/client-dynamodb');\nconst flynamo = require('@flybondi/flynamo');\n\nconst { forTable } = flynamo(new DynamoDB());\nconst { insert, update, remove } = forTable('SomeTable');\n\n(async function () {\n  // Insert a document into `SomeTable`\n  await insert({ id: 42, name: 'Bob' });\n\n  // Update its contents\n  await update(42, { name: 'Alice' });\n\n  // ...and delete it\n  await remove(42);\n})();\n```\n\n## API\n\nDig into the [documentation][flynamo-jsdoc] to learn about the available functions.\n\n---\n\nMade with 💛 by [Flybondi][flybondi].\n\n[aws]: https://aws.amazon.com/\n[dynamodb]: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/Welcome.html\n[typings]: https://github.com/flybondi/flynamo/blob/master/index.d.ts\n[ramda]: http://ramdajs.com/\n[lodashfp]: https://github.com/lodash/lodash/wiki/FP-Guide\n[flynamo-jsdoc]: https://flybondi.github.io/flynamo/\n[flybondi]: https://flybondi.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflybondi%2Fflynamo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflybondi%2Fflynamo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflybondi%2Fflynamo/lists"}