Fork this repository to quickstart lambda function development with Typescript. Perfect for microservices.
- build and deploy in seconds, thanks to esbuild and using the AWS Lambda API directly
- minified bundles (less space, faster startup)
- full source map support with readable stack traces
- infrastructure as code with Cloudformation
- Jest as a testing framework
- every dependency is an npm package, no need to install additional tools like aws-cli or zip
- run
npm ci
npm testexecutes test with jestnpm run buildcreates ./dist/lambda.js bundlenpm run zipcreates the ./dist/lambda.zip from ./dist/lambda.js and ./dist/lambda.js.mapnpm run distruns all of the above stepsnpm run stackcreates or updates the CloudFormation stacknpm run deployused to deploy ./dist/lambda.zip to the created lambda functionnpm startwill start the lambda function locally
Hint: Currently the region is hardcoded to eu-west-1. TODO: AWS environment parameter should work. Example
AWS_REGION=eu-central-1 AWS_PROFILE=atombrenner npm run stack
- esbuild
- Jest for testing
- Babel as a Jest transformer
- Prettier for code formatting
- Husky for managing git hooks, e.g. run tests before committing
Dropped CDK because it was too heavy-weight for simple lambda micro services. It was hard to maintain a second package.json and tsconfig.json just for CDK. Having a single Cloudformation template and deploy it via API is much faster and easier to maintain. Also the function can be updated (deployed) by a simple API call, decoupled from other infrastructure updates. Deploying a new version or rolling back to an old one takes only a few seconds.,
Switched to use esbuild for transpiling and bundling lambda typescript source.
Compared to webpack, esbuild configuration is minimal and it is unbelievable fast.
The generated bundle is slightly larger than with webpack, but for AWS Lambdas a waste of a few kilobytes doesn't matter.
The important thing is, that all needed dependencies are bundled and all the noise from node_modules (tests, sources, readme, etc) is excluded.
As esbuild is only transpiling typescript, a separate call to tsc run is necessary in npm run dist.
- generate and use source-maps to have readable stack traces in production
--sourcemap --sources-content=falsegenerates a small source-map without embedded sources--keepnamesdoes not minifiy names which makes stack traces even more human readableNODE_OPTIONS=--enable-source-mapsenables experimental source-map support in AWS Lambda nodejs