Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.12 KB

README.md

File metadata and controls

36 lines (24 loc) · 1.12 KB

Servie Lambda

NPM version NPM downloads Build status Test coverage

Servie transport for AWS lambda proxy.

Installation

npm install servie-lambda --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