dynamodb-csv-export
Node.js CLI tool to export DynamoDB table data to CSV or describe table structure.
View Repository →Overview
A small Node.js command-line utility to dump the contents of a DynamoDB table into a CSV file, or describe the table’s metadata. Useful for one-off data exports, audits, or feeding DynamoDB data into spreadsheets and other tools.
Purpose
DynamoDB’s console is slow for bulk inspection. This tool provides a fast, scriptable way to export table data without needing the AWS console or writing bespoke SDK code each time.
Stack
- Runtime: Node.js
- AWS integration: AWS SDK for JavaScript
- Output format: CSV (comma-separated values)
- Interface: CLI flags (
-ttable name,-foutput file,-ddescribe mode)