1.0.12 • Published 9 months ago

lamba v1.0.12

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

lamba

A tiny development web server that wraps over AWS lambda handlers

If you're tired of how slow sam local start-api is for local development, you can use lamba to serve local endpoints corresponding to the AWS SAM lambda handlers in your codebase. Thrown together in an afternoon -- still very much in development.

Usage

lamba [path_to_config=./lamba.json]

Configuration

Configuration happens through a lamba.json file. If one isn't passed as an argument, tries to default to a launch.json file in the current folder.

Example structure

{
  "port": 6987,
  "routes": [
      {
        "path": "/local_path_starting_with_slash",
        "endpoint": "/endpoint_starting_with_slash/:optional_path_param"
      },
    ...
  ]
  "env": [
    "key": "value",
    ...
  ]
}

License

Licensed under the MIT License. Made by Marko Calasan, 2023.

1.0.12

9 months ago

1.0.11

9 months ago

1.0.10

9 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago