├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── merge-to-master.yml │ └── pull-request.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── lib └── lambda-service.js ├── package.json ├── test ├── concurrency.js ├── concurrent-invocations.js ├── lambda-service.js ├── logging.js ├── multiple-events.js ├── non-warming-events.js ├── target.js └── warming-events.js └── types ├── index.d.ts ├── test.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | test 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/merge-to-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/.github/workflows/merge-to-master.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/index.js -------------------------------------------------------------------------------- /lib/lambda-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/lib/lambda-service.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/package.json -------------------------------------------------------------------------------- /test/concurrency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/test/concurrency.js -------------------------------------------------------------------------------- /test/concurrent-invocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/test/concurrent-invocations.js -------------------------------------------------------------------------------- /test/lambda-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/test/lambda-service.js -------------------------------------------------------------------------------- /test/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/test/logging.js -------------------------------------------------------------------------------- /test/multiple-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/test/multiple-events.js -------------------------------------------------------------------------------- /test/non-warming-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/test/non-warming-events.js -------------------------------------------------------------------------------- /test/target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/test/target.js -------------------------------------------------------------------------------- /test/warming-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/test/warming-events.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/types/test.ts -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremydaly/lambda-warmer/HEAD/types/tsconfig.json --------------------------------------------------------------------------------