├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .husky ├── _ │ └── husky.sh ├── post-commit └── pre-commit ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── eslint.config.js ├── jest-dynamodb-config.cjs ├── jest.config.mjs ├── license ├── package.json ├── readme.md ├── renovate.json ├── src ├── blocker.test.ts ├── blocker.ts ├── clients.ts ├── ddb.ts ├── esm-lib-import.test.ts ├── esm-package.test.ts ├── index.ts ├── parallel-scan-stream.test.ts ├── parallel-scan-stream.ts ├── parallel-scan.test.ts └── parallel-scan.ts ├── tsconfig.json └── wallaby.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/_/husky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/.husky/_/husky.sh -------------------------------------------------------------------------------- /.husky/post-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | git update-index --again 4 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | yarn lint-staged 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jest-dynamodb-config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/jest-dynamodb-config.cjs -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/renovate.json -------------------------------------------------------------------------------- /src/blocker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/blocker.test.ts -------------------------------------------------------------------------------- /src/blocker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/blocker.ts -------------------------------------------------------------------------------- /src/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/clients.ts -------------------------------------------------------------------------------- /src/ddb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/ddb.ts -------------------------------------------------------------------------------- /src/esm-lib-import.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/esm-lib-import.test.ts -------------------------------------------------------------------------------- /src/esm-package.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/esm-package.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/parallel-scan-stream.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/parallel-scan-stream.test.ts -------------------------------------------------------------------------------- /src/parallel-scan-stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/parallel-scan-stream.ts -------------------------------------------------------------------------------- /src/parallel-scan.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/parallel-scan.test.ts -------------------------------------------------------------------------------- /src/parallel-scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/src/parallel-scan.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wallaby.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shelfio/dynamodb-parallel-scan/HEAD/wallaby.config.js --------------------------------------------------------------------------------