aws-sam-typescript-layers-example icon indicating copy to clipboard operation
aws-sam-typescript-layers-example copied to clipboard

Example project for developing AWS Lambda functions on TypeScript with all goodies: local development, tests, debugging, shared layers (3rd party and your own), and deploy.

Results 8 aws-sam-typescript-layers-example issues
Sort by recently updated
recently updated
newest added

We are having difficulty setting up a local environment, running with `sam local start-api` which uses a shared dependency from our yarn workspace. ## Steps 1. I have updated the...

It seems like AWS SAM now supports Typescript in beta. Is this now recommended instead of this template? https://aws.amazon.com/blogs/compute/building-typescript-projects-with-aws-sam-cli/

First of all, thank you @Envek and others for both the great writeup at https://evilmartians.com/chronicles/serverless-typescript-a-complete-setup-for-aws-sam-lambda and for this template repo. This is my first time using AWS SAM in general,...

Hey im getting this error, and i cant seem to be able to fix it. i just downloaded the repo and tryed to compile but i get this error. Building...

I've been following your guide on evilmartians, but the build process errors out at: ``` echo "{\"extends\": \"./tsconfig.json\", \"include\": [\"${HANDLER}\"] }" > tsconfig-only-handler.json npm run build -- --build tsconfig-only-handler.json ```...

Only run `npm install` if the node_modules dir is missing or older than the package.json file. This runs on every function during a sam build, and skipping this step drastically...

Hi Envek, first of all thank you for this amazing project. I think it is still relevant because the implementation of AWS 'sam build' with esbuild results in a huge...