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, faster deployment)
- full source map support with readable stack traces
- infrastructure as code with Cloudformation
- Jest as a testing framework
- the whole tool chain are just typescript files, no need to install additional tools like aws-cli or zip
- uses tsx to execute typescript files (which is also leveraging esbuild)
- run
npm ci
npm test
execute tests with jestnpm run build
create ./dist/lambda.js bundlenpm run zip
create the ./dist/lambda.zip from ./dist/lambda.js and ./dist/lambda.js.mapnpm run dist
run all of the above stepsnpm run stack
create or update the CloudFormation stacknpm run deploy
used to deploy ./dist/lambda.zip to the created lambda functionnpm start
will 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
- tsx for executing scripts written in TypeScript
- Jest for testing
- Babel as a Jest transformer
- Prettier for code formatting
- Husky for managing git hooks, e.g. run tests before committing
I used ts-node for many years, it helped me and many of my teams to write automation scripts in TypeScript instead of bash or ruby. With the introduction of ESM and the slow migration from CommonJS to ESM correct configuration of ts-node got harder and harder. With node 20 ts-node stopped working for ESM modules at all. Not the fault of ts-node (see here for details) but even after months it was never fixed or the workaround was too esoteric for me. I found tsx, which is powered by esbuild, and it works like a charm for scripts that are part of an esm package without special config.
Dropped CDK because it was too heavy-weight for simple lambda microservices. 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. 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 unbelievably 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 for npm run dist
.
- generate and use source maps to have readable stack traces in production
--sourcemap --sources-content=false
generates a small source-map without embedded sources--keepnames
does not minifiy names which makes stack traces even more human-readableNODE_OPTIONS=--enable-source-maps
enables experimental source-map support in AWS Lambda nodejs