Skip to content

Commit cd236f7

Browse files
authored
Update README.md
1 parent 60e5488 commit cd236f7

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,16 @@
11
# dynamodump
2-
Node cli for exporting & importing schema of DynamoDB tables
2+
Node cli for exporting & importing schema of DynamoDB tables. I didn't find any other node tools for dumping table structure (indexes etc), they all only dump data. Can be used in conjunction with other tools to dump data as well.
3+
4+
## Install
5+
```
6+
npm install -g dynamodump
7+
```
8+
9+
## Examples
10+
```
11+
dynamodump export-schema --region=eu-west-1 --table=your-table --file=your-schema-dump
12+
dynamodump import-schema --region=eu-west-1 --file=your-schema-dump --table=your-table --wait-for-active
13+
```
14+
15+
## Related
16+
https://github.com/yegor256/dynamo-archive - Can be used for dumping the data itself

0 commit comments

Comments
 (0)