├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── cli.js ├── examples ├── localReplica.js └── statePersistence.js ├── index.js ├── package.json └── test.js /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/cli.js -------------------------------------------------------------------------------- /examples/localReplica.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/examples/localReplica.js -------------------------------------------------------------------------------- /examples/statePersistence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/examples/statePersistence.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironSource/node-dynamodb-stream/HEAD/test.js --------------------------------------------------------------------------------