npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lambda-alb

v1.1.0

Published

Mock ALB for invoking AWS Lambda's over HTTP using express.

Downloads

7

Readme

lambda-alb

Docker Hub

A mock ALB using express that enables invoking a lambda locally using HTTP.

It supports multple lambda's mapped to various routes. Can be configured to use either a mock AWS setup, such as localstack, or an actual AWS region.

GitHub Repo: https://github.com/djfdyuruiry/lambda-alb

Docker Hub: https://hub.docker.com/r/djfdyuruiry/lambda-alb

NPM

Read the full typedoc documentation: https://djfdyuruiry.github.io/lambda-alb/


Getting Started


  • Install this package using npm
npm install -g lambda-alb
  • Deploy some code to an AWS Lambda Function that processes ALB or API Gateway request events (see here)

  • Create a new JSON file config.json, add the following:

{
    "region": "eu-west-1",
    "targets": {
        "some-lambda":{
            "lambdaName": "some-lambda-function"
        },
        "another-lambda":{
            "lambdaName": "another-lambda-function"
        }
    }
}

Ensure the region of your function is correct when copying the above

  • Ensure that your AWS credentials are set up correctly, see here if you need help doing this

  • Start the ALB mock using your new config file:

lambda-alb --config config.json
  • Start making requests using the target routes:
curl http://localhost:8080/some-lambda/
curl http://localhost:8080/another-lambda/

Local AWS Mocks


If you are using a local AWS Mock to run your lambda's, specify it's endpoint in the JSON configuration file:

{
    "lambdaEndpoint": "http://localhost:4574",
    "targets": {
        "some-lambda":{
            "lambdaName": "some-lambda-function"
        }
    }
}

If you get errors similar to Missing credentials in config, run the below to set mock credential env vars before starting lambda-alb:

export AWS_ACCESS_KEY_ID=MOCK
export AWS_SECRET_ACCESS_KEY=MOCK

Docker


To use the image:

  • Place a config.json file in the current directory containing your setup

  • Run the below commands:

    dokcer run --rm -v $(pwd):/etc/lambda-alb -p 8080:8080 djfdyuruiry/lambda-alb

    Don't forget to pass your AWS credentials in as environment variables, or mount a volume to supply a credentials file. See here for more info.

  • You can now access your lambda-alb on http://localhost:8080

docker-compose

If you are using docker-compose it's very simple to add lambda-alb to your stack:

version: "3"

services:
  alb:
    image: djfdyuruiry/lambda-alb.git
    ports:
      - 8080:8080
    volumes:
      - ${PWD}/config.json:/etc/lambda-alb/config.json

Building

A Dockerfile is provided in this repository that will create an image containing the latest version of this package on the global path.

docker build --tag djfdyuruiry/lambda-alb .

Command Line Arguments


lambda-alb supports several command line parameters:

  • -c or --config: Path to JSON configuration file
  • -p or --port: (Optional) Port to listen on, defaults to 8080
  • -h or --host: (Optional) Host to accept requests on, defaults to * (any hostname/ip)
  • -o or --cors-origin: (Optional) CORS origins to allow, defaults to * (any origin)
  • -d or --debug: (Optional) Enable debug logging

Configuration


Below is an overview of the JSON configuration file schema:

| Key | Description | Example | Required? | |----------------|-----------------------------------------------------------|----------------------------------------------------------------|-----------| | region | AWS region that your Lambda targets have been deployed to | eu-west-1 | ✘ | | lambdaEndpoint | Custom service endpoint for AWS Lambda | http://localhost:4574 | ✘ | | targets | Map of target route to AWS Lambda definition | { "some-lambda": { "lambdaName": "some-lambda-function "} } | ✔ |

AWS Lambda Definition (targets) schema:

| Key | Description | Example | Required? | |----------------|----------------------------------------------|-----------------|-----------| | lambdaName | Name of the target Lambda function | a-lambda-name | ✔ | | versionOrAlias | A version or alias of the function to invoke | DEV | ✘ | | routeUrl | Override the target route for this Lambda | /special-route| ✘ |