ts-aws-lambda-template

Typescript AWS lambda template


Project maintained by TendTo Hosted on GitHub Pages — Theme by mattgraham

Typescript Typescript AWS Lambda template

This project contains source code and supporting files for creating a serverless application that you can deploy with the SAM CLI.
It uses the Typescript language and targets the node 14.x runtime provided by AWS.

Usage

To use this template in a brand new project run

sam init --location gh:TendTo/ts-aws-lambda-template-cookiecutter

During the configuration, you can choose whether to let the template add a lambda layer for you.
It can always be added later.

🗂 Project structure

.
├── __tests__            # unit tests to run with jest
├── .devcontainer        # used by VsCode to launch a devcontainer with SAM and node installed
├── dist                 # folder that stores the compiled typescript. Created by tsc compilation
├── events               # json events used with 'sam local invoke' or for testing
├── src                  # code that will be deployed to AWS Lambda
├── .gitignore           # .gitignore file
├── env.json.dist        # example env file that defines the env variables for 'sam local invoke'
├── jest.config.js       # jest configuration file
├── LICENSE              # open license of the project
├── package-lock.json    # file describing in detail the dependency tree of the node modules dependencies
├── package.json         # file listing the project's dependencies and utility scripts
├── README.md            # THIS FILE
├── samconfig.toml.dist  # example of a SAM configuration file
├── template.yaml        # template used by SAM to deploy the serverless architecture
└── tsconfig.json        # typescript configuration file

The application uses a few AWS resources, including Lambda functions and an API Gateway API. These resources are defined in the template.yaml file in this project.
You can easily extend the template to add any AWS resource you may need.

Here’s an example of what this template would produce:

aws-schema

🧾 Requirements

The Serverless Application Model Command Line Interface (SAM CLI) is an extension of the AWS CLI that adds functionality for building and testing Lambda applications. It uses Docker to run your functions in an Amazon Linux environment that matches Lambda. It can also emulate your application’s build environment and API.

To use the SAM CLI, you need the following tools.

NOTE: npm needs to be version 7 or higher to support workspaces.
You can check the current version with npm -v.
npm can easily be updated with npm install -g npm@7 or npm install -g npm@latest

You will also need an AWS account and a IAM user with the right access policy you can use to connect from the console.
The file storing the credentials should be in the default location ~/.aws/credentials, unless otherwise specified.

Optionally, you can install also the AWS CLI for more fine-tuned control over your operations, like deleting an already deployed stack.

🐳 Use the DevContainer

If you are using VsCode, you could take advantage of its DevContainer functionalities. In that case, you would just need to have Docker installed.

You still need the credentials of an account with enough permissions to perform the deployment.
The credentials file will be fetched from ~/.aws/credentials, unless otherwise specified.

⚙️ SAM configuration

The configuration is specified in the samconfig.toml file. Rename the samconfig.toml.dist file or create your own.
You can change it freely, or add some more environments. Some of the settings include:

Here’s an example of a samconfig.toml:

version = 0.1                                 # needed

[dev.deploy.parameters]                       # specified with SAM deploy --config-env dev
profile = "default"                           # aws profile
confirm_changeset = true 
capabilities = "CAPABILITY_IAM"               # needed to manage IAM roles
stack_name = "my-function-stack"              # name of the stack that will be deployed
s3_prefix = "my-function-folder"              # code folder in the S3 bucket
s3_bucket = "my-function-bucket-for-lambda"   # S3 bucket
region = "eu-west-1"
# should not include sensitive tokens
# overrides the parameters "apiStage" and "token"
# it is required if default values are not provided in the template
parameter_overrides = "apiStage=\"dev\" token=\"not-secret-token\"" 

[dev.local_invoke.parameters]                 # used by SAM local invoke --config-env dev
env_vars = "env.json"                         # file that stores the environment variables

▶️ Build, deploy and delete

Build

First of all, install all the required dependencies with

npm install

To build the stack, you can run

# to compile all the .ts files and create the dist folder
npm run compile

sam build

Deploy

Once the stack has been built and the .aws-sam folder is present, to deploy the stack with Cloudformation, you can run

sam deploy --config-file samconfig.toml --config-env dev

Delete

If a Stack happens to be in a ROLLBACK state, preventing you from doing any more deployments or you simply want to delete it, you can do so from the AWS console or, if you have the AWS CLI installed, you can run

aws cloudformation delete-stack --stack-name my-function-stack

➕ Add a resource to your application

The application template uses AWS Serverless Application Model (AWS SAM) to define application resources. AWS SAM is an extension of AWS CloudFormation with a simpler syntax for configuring common serverless application resources such as functions, triggers, and APIs. For resources not included in the SAM specification, you can use standard AWS CloudFormation resource types.

There are 3 main types of resource addition:

  1. Generic resource (non function - non layer):
    • Just update the template.yaml file. Add the resource and its properties
  2. Lambda function (no dependencies):
    • Update the template.yaml file. Add the lambda function and its properties
    • Create a new folder under src that the CodeUri property will point to
  3. Lambda layer (or function with self-contained dependencies):
    • Update the template.yaml file. Add the lambda function and its properties
    • Use npm run newLayer -- <layer_name> to create a new folder the ContentUri property will point to. You can leave everything as default
    • To install the layer’s dependencies, run npm i -w src/<layer_name> <package>
    • If you need to be able to reference your own .ts files in the layer from any other lambda:
      • Add the following in the tsconfig.json:
        {
        "compilerOptions": {
          "paths": {
              "/opt/nodejs/*": [
                  "./<layer_name>/*"
              ]
          }
        },
        
      • Import the modules as import * from '/opt/nodejs/<file_name>'

NOTE: you may need to reload your editor for it to notice the new dependencies

🛠 Utility scripts

Some utility scripts have been provided:

NOTE: To use these scripts you have to run npm install first. You may also need to reload your editor for it to notice the newly installed dependencies

NOTE: Both the local invoke and the deploy command will refer to the .aws-sam folder, its template, and its source code, if present.
Otherwise, they will fall back on the template.yaml file in the root folder and the code in the dist folder.

⌨️ Examples

Start compiling the typescript source in watch mode

npm run watch

Start the jest tests. Make sure the jest.config.js’s mappings are configured correctly

npm test

Build all the lambda functions and install their dependencies. It is a good idea to tun this before any other SAM command

npm run build

Invoke the MyFunction function locally in a specialized docker container

npm run invoke -- MyFunction

Invoke the MyFunction2 function locally in a specialized docker container, passing as the event parameter of the handle the values of events/event.json

npm run invoke -- MyFunction2 --e events/event.json

Deploy all the infrastructure to AWS

npm run deploy

🧪 Testing

Using Jest

Make sure the jest.config.js is configured correctly.

{
  ...
  moduleNameMapper : {
    "^/opt/nodejs/(.*)$": "<rootDir>/src/<layer_name>/$1"
  }
  ...
}

Then just run

npm test

Using SAM

First, build your application, because SAM needs a compiled dist folder.

npm run build

Local Invoke

The SAM CLI installs dependencies defined in package.json, creates a deployment package, and saves it in the .aws-sam/build folder.

Test a single function by invoking it directly with a test event. An event is a JSON document that represents the input that the function receives from the event source. Test events are included in the events folder in this project.

Run functions locally and invoke them:

npm run invoke -- --event events/event.json

Start API

The SAM CLI can also emulate your application’s API. Use the sam local start-api to run the API locally on port 3000.

sam local start-api
curl http://localhost:3000/

The SAM CLI reads the application template to determine the API’s routes and the functions that they invoke. The Events property on each function’s definition includes the route and method for each path.

Events:
  MyEvent:
    Type: Api
    Properties:
      Path: /func
      Method: get

♻️ Fetch, tail, and filter Lambda function logs

To simplify troubleshooting, SAM CLI has a command called sam logs. sam logs lets you fetch logs generated by your deployed Lambda function from the command line. In addition to printing the logs on the terminal, this command has several nifty features to help you quickly find the bug.

sam logs -n HelloWorldFunction --stack-name ts-aws-lambda --tail

NOTE: This command works for all AWS Lambda functions; not just the ones you deploy using SAM.

📚 Resources

❤️ Credit

Inspired by aws-sam-typescript-layers-example