amz-lambda-tool
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Servie Lambda

Servie transport for AWS lambda proxy.

Installation

npm install amz-lambda-tool --save

Usage

Wrap a standard Servie middleware function in createHandler to return a AWS Lambda handler.

import { createHandler } from "servie-lambda";
import { compose } from "throwback";
import { get } from "servie-route";

export const handler = createHandler(
  compose([get("/test", req => new Response("hello world"))])
);

TypeScript

This project is written using TypeScript and publishes the definitions directly to NPM.

License

Apache 2.0

Package Sidebar

Install

npm i amz-lambda-tool

Weekly Downloads

1

Version

1.0.0

License

Apache-2.0

Unpacked Size

2.94 kB

Total Files

3

Last publish

Collaborators

  • kovopilot