{"id":15239090,"url":"https://github.com/stacksjs/dynamodb-tooling","last_synced_at":"2025-04-30T15:27:54.862Z","repository":{"id":228131457,"uuid":"773232073","full_name":"stacksjs/dynamodb-tooling","owner":"stacksjs","description":"🛠️ A simple local DynamoDB API. Without the need for Docker.","archived":false,"fork":false,"pushed_at":"2025-04-17T08:48:20.000Z","size":1065,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-19T21:57:00.081Z","etag":null,"topics":["automation","bun","dynamodb","local","setup","single-table-design","typescript"],"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/stacksjs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["stacksjs","chrisbbreuer"],"open_collective":"stacksjs"}},"created_at":"2024-03-17T05:01:21.000Z","updated_at":"2025-03-28T07:32:41.000Z","dependencies_parsed_at":"2024-05-04T04:31:30.823Z","dependency_job_id":"a37b4f5e-cc4c-4a73-ae6c-41deea1966eb","html_url":"https://github.com/stacksjs/dynamodb-tooling","commit_stats":null,"previous_names":["stacksjs/dynamodb-tooling"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stacksjs%2Fdynamodb-tooling","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stacksjs%2Fdynamodb-tooling/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stacksjs%2Fdynamodb-tooling/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stacksjs%2Fdynamodb-tooling/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stacksjs","download_url":"https://codeload.github.com/stacksjs/dynamodb-tooling/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251342721,"owners_count":21574245,"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":["automation","bun","dynamodb","local","setup","single-table-design","typescript"],"created_at":"2024-09-29T10:05:15.999Z","updated_at":"2025-04-30T15:27:54.855Z","avatar_url":"https://github.com/stacksjs.png","language":"TypeScript","funding_links":["https://github.com/sponsors/stacksjs","https://github.com/sponsors/chrisbbreuer","https://opencollective.com/stacksjs"],"categories":[],"sub_categories":[],"readme":"![Social Card of this repo](.github/art/cover.png)\n\n# DynamoDB Goodies\n\n[![npm version][npm-version-src]][npm-version-href]\n[![GitHub Actions][github-actions-src]][github-actions-href]\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\u003c!-- [![npm downloads][npm-downloads-src]][npm-downloads-href] --\u003e\n\u003c!-- [![Codecov][codecov-src]][codecov-href] --\u003e\n\n## Features\n\n- Zero-config DynamoDB setup\n- Local development with SSL support (wip)\n- DynamoDB Toolbox integration\n\n## Install\n\n```bash\nbun install -d dynamodb-tooling\n```\n\n## Get Started\n\nGetting started with the DynamoDB Tooling is easy. Just import `dynamoDb` and get going:\n\n```ts\nimport { dynamoDb } from 'dynamodb-tooling'\n\ninterface LaunchOptions {\n  port: number\n  dbPath?: string\n  additionalArgs?: string[]\n  verbose?: boolean\n  detached?: boolean\n  javaOpts?: string\n}\n\nconst childProcess = await dynamoDb.launch(options)\ndynamoDb.stopChild(childProcess)\ndynamoDb.stop(options.port)\ndynamoDb.relaunch()\n\ndynamoDb.configureInstaller()\n\nawait dynamoDb.install()\n```\n\n### Example\n\n```ts\nimport { dynamoDb } from 'dynamodb-tooling'\n\nconst port = 8000\n// if you want to share with Bun Shell\n\nawait dynamoDb.launch({\n  port,\n  additionalArgs: ['-sharedDb'],\n})\n// do your tests / trigger your logic\ndynamoDb.stop(port)\n```\n\nAlternatively, you can use it as a detached server:\n\n```ts\nconst port = 8000\nconst child = await dynamoDb.launch({ port })\n// trigger your logic\nawait dynamoDb.stopChild(child)\n```\n\n## Configuration\n\nThe client can be configured using a `dynamodb.config.ts` _(or `dynamodb.config.js`)_ file and it will be automatically loaded.\n\n```ts\n// dynamodb.config.ts (or dynamodb.config.js)\nexport default {\n  installPath: path.join(os.tmpdir(), 'dynamodb-local'),\n  downloadUrl: 'https://d1ni2b6xgvw0s0.cloudfront.net/v2.x/dynamodb_local_latest.tar.gz', // the official download URL\n}\n```\n\n## Testing\n\n```bash\nbun test\n```\n\n## Changelog\n\nPlease see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.\n\n## Contributing\n\nPlease review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.\n\n## Community\n\nFor help, discussion about best practices, or any other conversation that would benefit from being searchable:\n\n[Discussions on GitHub](https://github.com/stacksjs/stacks/discussions)\n\nFor casual chit-chat with others using this package:\n\n[Join the Stacks Discord Server](https://discord.gg/stacksjs)\n\n## Postcardware\n\nStacks OSS will always stay open-sourced, and we will always love to receive postcards from wherever Stacks is used!  _And we also publish them on our website. Thank you, Spatie._\n\nOur address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States 🌎\n\n## Sponsors\n\nWe would like to extend our thanks to the following sponsors for funding Stacks development. If you are interested in becoming a sponsor, please reach out to us.\n\n- [JetBrains](https://www.jetbrains.com/)\n- [The Solana Foundation](https://solana.com/)\n\n## Credits\n\n- [dynamodb-toolbox](https://github.com/jeremydaly/dynamodb-toolbox)\n- [dynamodb-local](https://github.com/rynop/dynamodb-local)\n- [Chris Breuer](https://github.com/chrisbbreuer)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [LICENSE](https://github.com/stacksjs/stacks/tree/main/LICENSE.md) for more information.\n\nMade with 💙\n\n\u003c!-- Badges --\u003e\n[npm-version-src]: https://img.shields.io/npm/v/bun-reverse-proxy?style=flat-square\n[npm-version-href]: https://npmjs.com/package/bun-reverse-proxy\n[github-actions-src]: https://img.shields.io/github/actions/workflow/status/stacksjs/reverse-proxy/ci.yml?style=flat-square\u0026branch=main\n[github-actions-href]: https://github.com/stacksjs/reverse-proxy/actions?query=workflow%3Aci\n\n\u003c!-- [codecov-src]: https://img.shields.io/codecov/c/gh/stacksjs/reverse-proxy/main?style=flat-square\n[codecov-href]: https://codecov.io/gh/stacksjs/reverse-proxy --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstacksjs%2Fdynamodb-tooling","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstacksjs%2Fdynamodb-tooling","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstacksjs%2Fdynamodb-tooling/lists"}